Hide posts of SimpleJob plugin in general search

0

I have the search widget in my blog section, when I search it also shows me information about the Simple Job Board plugin but this information I do not want to be mestre. How can I get that information not shown?

    
asked by Itzli Molina 09.08.2017 в 01:17
source

1 answer

1
//Search only posts on blog page
function my_home_category( $query ) {
    if ( !is_admin() && $query->is_main_query() ) {
    if ($query->is_search) {
        $query->set('post_type', 'post');
    }
  }
}
add_action( 'pre_get_posts', 'my_home_category' );

It was just a matter of modifying the main search

    
answered by 09.08.2017 в 19:03