get_blog_list example


function get_most_active_blogs( $num = 10, $display = true ) {
    _deprecated_function( __FUNCTION__, '3.0.0' );

    $blogs = get_blog_list( 0, 'all', false ); // $blog_id -> $details     if ( is_array( $blogs ) ) {
        reset( $blogs );
        $most_active = array();
        $blog_list = array();
        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 );
        $t = array();
        
Home | Imprint | This part of the site doesn't use cookies.