-
-
Save searchwpgists/696a1745d6e39ca2662ab3eccda4f851 to your computer and use it in GitHub Desktop.
This file contains 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 | |
// @link https://searchwp.com/documentation/classes/searchwp-mod/ | |
// Retrieve Source name to use with Mod. | |
$source = \SearchWP\Utils::get_post_type_source_name( 'post' ); | |
// Build Mod to exclude Post ID 145 and Post ID 211. | |
$mod = new \SearchWP\Mod( $source ); | |
$mod->set_where( [ [ | |
'column' => 'id', | |
'value' => [ 145, 211 ], | |
'compare' => 'NOT IN', | |
'type' => 'NUMERIC', | |
] ] ); | |
// Execute search for 'coffee' using Mod. | |
$search = new \SearchWP\Query( 'coffee', [ | |
'mods' => [ $mod ], | |
] ); | |
$results = $search->results; // Array of results. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment