• Resolved Neo

    (@firefliespilots)


    Hi, how to omit pages, or not show with in search? I would like to show only post and custom post. Thank you very much. Greetings and have a nice week Neo

Viewing 1 replies (of 1 total)
  • Hi Neo,

    if the SearchWP Live Ajax Search is used without SearchWP Pro it would search all post types by default.
    You can use the following hook to set the post types you want to search:

    add_filter( 'searchwp_live_search_query_args', function( $args ){
    	$args['post_type'] = ['post', 'your-custom-post-type'];
    	return $args;
    } );

    With SearchWP Pro you can select the exact post types to search and which fields for each post type.
    I hope this helps!

Viewing 1 replies (of 1 total)

The topic ‘Do not show pages’ is closed to new replies.