• Resolved csem

    (@csem)


    Hello ,

    Anyone know how can we use wordpress default search work only for post.

    can anyone know proper solution for this issue.

    Thanks,

Viewing 2 replies - 1 through 2 (of 2 total)
  • Anonymous User 14379775

    (@anonymized-14379775)

    Hi, open your theme’s functions.php file and paste this code:

    function search_filter($query) {
      if ( ! is_admin() && $query->is_main_query() ) {
    	if ($query->is_search) {
    	  $query->set('post_type', 'post');
    	}
      }
    }
    add_action( 'pre_get_posts', 'search_filter' );
    Thread Starter csem

    (@csem)

    Yes its working.
    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WordPress Defalut Search’ is closed to new replies.