wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_theme_support › WordPress Function

Seit3.1.0
Veraltetn/v
get_theme_support ( $feature, $args )
Parameter: (2)
  • (string) $feature The feature to check. See add_theme_support() for the list of possible values.
    Erforderlich: Ja
  • (mixed) $args Optional extra arguments to be checked against certain features.
    Erforderlich: Ja
Gibt zurück:
  • (mixed) The array of extra arguments or the value for the registered feature.
Definiert in:
Codex:
Changelog:
  • 5.3.0

Gets the theme support arguments passed when registering that support.

Example usage: get_theme_support( 'custom-logo' ); get_theme_support( 'custom-header', 'width' );


Quellcode

function get_theme_support( $feature, ...$args ) {
	global $_wp_theme_features;

	if ( ! isset( $_wp_theme_features[ $feature ] ) ) {
		return false;
	}

	if ( ! $args ) {
		return $_wp_theme_features[ $feature ];
	}

	switch ( $feature ) {
		case 'custom-logo':
		case 'custom-header':
		case 'custom-background':
			if ( isset( $_wp_theme_features[ $feature ][0][ $args[0] ] ) ) {
				return $_wp_theme_features[ $feature ][0][ $args[0] ];
			}
			return false;

		default:
			return $_wp_theme_features[ $feature ];
	}
}