install_themes_feature_list()
This function has been deprecated. Use get_theme_feature_list() instead.
Retrieve list of WordPress theme features (aka theme tags).
Return
(array)
Source
File: wp-admin/includes/theme-install.php
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; }
Changelog
Version | Description |
---|---|
3.1.0 | Use get_theme_feature_list() instead. |
2.8.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/install_themes_feature_list