Skip to content

Instantly share code, notes, and snippets.

@igorveremsky
Created October 11, 2017 13:14
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 igorveremsky/5330756c07222b9f671dfd456f7f46a7 to your computer and use it in GitHub Desktop.
Save igorveremsky/5330756c07222b9f671dfd456f7f46a7 to your computer and use it in GitHub Desktop.
Search only in posts Wordpress
<?php
/*
* Search only in posts
* */
function search_only_in_posts($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','search_only_in_posts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment