fauzanjeg

JNews || Filter Query Search Page

Apr 20th, 2026
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. /**
  2.  * Filter Query Search Page
  3.  *
  4.  * @param mixed $query
  5.  * @return void
  6.  */
  7. function include_pages_in_search( $query ) {
  8.     if ( $query->is_search() && $query->is_main_query() && ! is_admin() ) {
  9.         $query->set( 'post_type', array( 'post', 'page' ) );
  10.     }
  11. }
  12. add_action( 'pre_get_posts', 'include_pages_in_search' );
Advertisement
Add Comment
Please, Sign In to add comment