Skip to content

Instantly share code, notes, and snippets.

View hannah-wright's full-sized avatar

Hannah hannah-wright

View GitHub Profile
@sbrajesh
sbrajesh / hide-subscribers.php
Last active March 14, 2024 23:27
Hide Subscriber Users from BuddyPress member Directory
add_action('bp_ajax_querystring','bpdev_exclude_users',20,2);
function bpdev_exclude_users($qs=false,$object=false){
//list of users to exclude
if($object!='members')//hide for members only
return $qs;
$excluded_user=join(',',bpdev_get_subscriber_user_ids());//comma separated ids of users whom you want to exclude