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



get_registered_theme_feature › WordPress Function

Seit5.5.0
Veraltetn/v
get_registered_theme_feature ( $feature )
Parameter:
  • (string) $feature The feature name. See add_theme_support() for the list of possible values.
    Erforderlich: Ja
Gibt zurück:
  • (array|null) The registration args, or null if the feature was not registered.
Definiert in:
Codex:

Gets the registration config for a theme feature.



Quellcode

function get_registered_theme_feature( $feature ) {
	global $_wp_registered_theme_features;

	if ( ! is_array( $_wp_registered_theme_features ) ) {
		return null;
	}

	return isset( $_wp_registered_theme_features[ $feature ] ) ? $_wp_registered_theme_features[ $feature ] : null;
}