Last active
March 20, 2021 15:26
-
-
Save gdnwebmedia/7ba7db73680ab73de670450172b883fc to your computer and use it in GitHub Desktop.
Search only WordPress Posts & pages
This file contains hidden or 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 | |
// 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