Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




get_most_active_blogs [ WordPress Function ]

get_most_active_blogs ( $num = 10, $display = true )
Defined at:



No description yet.

Source


<?php
function get_most_active_blogs$num 10$display true ) {
    
_deprecated_function__FUNCTION__'3.0' );

    
$blogs get_blog_list0'all'false ); // $blog_id -> $details
    
if ( is_array$blogs ) ) {
        
reset$blogs );
        foreach ( (array) 
$blogs as $key => $details ) {
            
$most_active$details['blog_id'] ] = $details['postcount'];
            
$blog_list$details['blog_id'] ] = $details// array_slice() removes keys!!
        
}
        
arsort$most_active );
        
reset$most_active );
        foreach ( (array) 
$most_active as $key => $details )
            
$t$key ] = $blog_list$key ];

        unset( 
$most_active );
        
$most_active $t;
    }

    if ( 
$display == true ) {
        if ( 
is_array$most_active ) ) {
            
reset$most_active );
            foreach ( (array) 
$most_active as $key => $details ) {
                
$url esc_url('http://' $details['domain'] . $details['path']);
                echo 
'<li>' $details['postcount'] . " <a href='$url'>$url</a></li>";
            }
        }
    }
    return 
array_slice$most_active0$num );
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics