wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



install_themes_feature_list › WordPress Function

Depuis2.8.0
Dépréciée3.1.0
install_themes_feature_list ( Pas de paramètres )
Retourne:
  • (array)
Défini(e) dans:
Codex:

Retrieves the list of WordPress theme features (aka theme tags).



Source

function install_themes_feature_list() {
	_deprecated_function( __FUNCTION__, '3.1.0', 'get_theme_feature_list()' );

	$cache = get_transient( 'wporg_theme_feature_list' );
	if ( ! $cache ) {
		set_transient( 'wporg_theme_feature_list', array(), 3 * HOUR_IN_SECONDS );
	}

	if ( $cache ) {
		return $cache;
	}

	$feature_list = themes_api( 'feature_list', array() );
	if ( is_wp_error( $feature_list ) ) {
		return array();
	}

	set_transient( 'wporg_theme_feature_list', $feature_list, 3 * HOUR_IN_SECONDS );

	return $feature_list;
}