Skip to content

Instantly share code, notes, and snippets.

@davidroyer
Last active January 12, 2020 13:38
Show Gist options
  • Save davidroyer/28f0ba14c455d024d2d75342f7ea0d42 to your computer and use it in GitHub Desktop.
Save davidroyer/28f0ba14c455d024d2d75342f7ea0d42 to your computer and use it in GitHub Desktop.
<?php
function wp_modify_search_filter( $query ) {
if ( $query->is_search && $query->is_main_query() ) {
$query->set( 'post__not_in', array( 1,2,3,4,5,6 ) );
}
}
add_action( 'pre_get_posts', 'wp_modify_search_filter' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment