install_popular_tags example


function install_dashboard() {
    display_plugins_table();
    ?> <div class="plugins-popular-tags-wrapper"> <h2><?php _e( 'Popular tags' ); ?></h2> <p><?php _e( 'You may also browse based on the most popular tags in the Plugin Directory:' ); ?></p> <?php
    $api_tags = install_popular_tags();

    echo '<p class="popular-tags">';
    if ( is_wp_error( $api_tags ) ) {
        echo $api_tags->get_error_message();
    } else {
        // Set up the tags in a way which can be interpreted by wp_generate_tag_cloud().         $tags = array();
        foreach ( (array) $api_tags as $tag ) {
            $url                  = self_admin_url( 'plugin-install.php?tab=search&type=tag&s=' . urlencode( $tag['name'] ) );
            $data                 = array(
                'link'  => esc_url( $url ),
                
Home | Imprint | This part of the site doesn't use cookies.