Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created June 23, 2015 20:41
Show Gist options
  • Save bappi-d-great/4b7f3808201ffb67f257 to your computer and use it in GitHub Desktop.
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
<?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