ID ) ) { $exclude_post_ids[] = $post->ID; } // Add any other post IDs you want to permanently exclude. $always_exclude = array( 42, 57 ); return array_unique( array_merge( $exclude_post_ids, $always_exclude ) ); } add_filter( 'bsearch_exclude_post_ids', 'bsearch_exclude_current_and_specific_posts', 10, 2 );