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?
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?
//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