Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function post_type_search_posts($query) {
  2. if ( !is_admin() && $query->is_main_query() ) {
  3. if ($query->is_search) {
  4. $query->set('post_type', 'docs');
  5. }
  6. }
  7. }
  8. add_action( 'pre_get_posts', 'post_type_search_posts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement