Skip to content

Instantly share code, notes, and snippets.

@gdnwebmedia
Last active March 20, 2021 15:26
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 gdnwebmedia/7ba7db73680ab73de670450172b883fc to your computer and use it in GitHub Desktop.
Save gdnwebmedia/7ba7db73680ab73de670450172b883fc to your computer and use it in GitHub Desktop.
Search only WordPress Posts & pages
<?php
// Search only Posts or Pages
//Exclude pages from WordPress Search
function wpb_search_filter( $query ) {
if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) {
$query->set( 'post_type', [ 'post', 'page' ] );
}
}
add_action( 'pre_get_posts', 'wpb_search_filter' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment