wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_registered_theme_features › WordPress Function

Da5.5.0
Deprecaton/a
get_registered_theme_features ( Nessun parametro )
Ritorna:
  • (array[]) List of theme features, keyed by their name.
Definito a:
Codex:

Gets the list of registered theme features.



Sorgenti

function get_registered_theme_features() {
	global $_wp_registered_theme_features;

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

	return $_wp_registered_theme_features;
}