wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
install_popular_tags › WordPress Function
Seit2.7.0
Veraltetn/v
› install_popular_tags ( $args = array() )
Parameter: |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Retrieves popular WordPress plugin tags.
Ähnliche Funktionen: install_global_terms, install_blog_defaults, install_blog, wp_install_defaults, uninstall_plugin
Quellcode
function install_popular_tags( $args = array() ) { $key = md5( serialize( $args ) ); $tags = get_site_transient( 'poptags_' . $key ); if ( false !== $tags ) { return $tags; } $tags = plugins_api( 'hot_tags', $args ); if ( is_wp_error( $tags ) ) { return $tags; } set_site_transient( 'poptags_' . $key, $tags, 3 * HOUR_IN_SECONDS ); return $tags; }