wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



get_registered_theme_features › WordPress Function

Od5.5.0
Przestarzałyn/a
get_registered_theme_features ( Brak parametrów )
Powrót:
  • (array[]) List of theme features, keyed by their name.
Zdefiniowane na:
Codex:

Gets the list of registered theme features.



Źródło

function get_registered_theme_features() {
	global $_wp_registered_theme_features;

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

	return $_wp_registered_theme_features;
}