wpseek.com
WordPress开发者和主题制作者的搜索引擎



install_themes_feature_list › WordPress Function

Since2.8.0
已弃用3.1.0
install_themes_feature_list ( 没有参数 )
返回:
  • (array)
定义在:
文档:

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



源码

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;
}