Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created December 8, 2013 02:44
Show Gist options
  • Save jchristopher/7852755 to your computer and use it in GitHub Desktop.
Save jchristopher/7852755 to your computer and use it in GitHub Desktop.
Tell SearchWP to exclude certain post(s) when searching
<?php
function my_searchwp_exclude( $ids, $engine, $terms )
{
$ids[] = 78; // forcefully exclude post 78
return $ids;
}
add_filter( 'searchwp_exclude', 'my_searchwp_exclude', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment