@mediaformat
Active 2 days, 3 hours ago
-
Django replied to the topic Looking for similar filter to pre_get_posts but for bp_search in the forum How-to & Troubleshooting 2 days, 5 hours ago
Unfortunately BuddyPress search doesn’t use WP_Query.
The best you can do with BuddyPress search is to use the
bp_search_query_results
filter.`
function bp_exclude_from_search( $search_results ) {
return array_filter( $search_results, function( $result ) {
$excluded_post_ids = array( 1, 2, 3 );
$excluded_post_types = array(…[Read more]