Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created June 3, 2020 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/4874b013fb73dab84a750e8ac800ab01 to your computer and use it in GitHub Desktop.
Save jchristopher/4874b013fb73dab84a750e8ac800ab01 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'searchwp\query\mods', function( $mods ) {
// Exclude Pages with 'coffee' in the Title.
$source = \SearchWP\Utils::get_post_type_source_name( 'page' );
$mod = new \SearchWP\Mod( $source );
$mod->set_where( [ [
'column' => 'post_title',
'value' => 'coffee',
'compare' => 'LIKE',
] ] );
$mods[] = $mod;
return $mods;
}, 30, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment