Last active
February 25, 2021 18:54
-
-
Save scottopolis/a9b252d28dcd2aec826446635ac07f33 to your computer and use it in GitHub Desktop.
Filter BuddyPress API Members
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 this code to a custom plugin | |
add_filter('bp_rest_members_get_items_query_args', function( $args, $request ) { | |
// These are just examples. Find available arguments here: https://codex.buddypress.org/developer/bp_user_query/ | |
$args['search_terms'] = 'football'; | |
$args['exclude'] = '1,2,3'; | |
return $args; | |
}, 10, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment