Created
September 12, 2016 05:58
-
-
Save vithalreddy/0683e3f8d57a73bc20803c2e1ed1d412 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
function filterpagesinsearch($query) { | |
if ($query->is_search) { | |
$query->set('post_type', 'post'); | |
} | |
return $query; | |
} | |
add_filter('pre_get_posts', 'filterpagesinsearch'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment