Created
June 23, 2015 20:41
-
-
Save bappi-d-great/4b7f3808201ffb67f257 to your computer and use it in GitHub Desktop.
Hide non-pro subsites from BP Sites List - WPMU Pro Sites
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'bp_blogs_get_blogs', 'bp_blogs_get_blogs_cb', 99, 2 ); | |
function bp_blogs_get_blogs_cb( $blogs, $r ) { | |
foreach( $blogs['blogs'] as $key => $blog ){ | |
if( ! is_pro_site( $blog->blog_id ) ) { | |
unset( $blogs['blogs'][$key] ); | |
$blogs['total']--; | |
} | |
} | |
return $blogs; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment