Archived topic
How to display only post in search results?
1 reply · Started by Fernando on August 15, 2017
Viewing posts 1–2 of 2
Hello
I use Wordpress download manager and it create a page for each file, I don't use these pages, I attach the files to posts that's Why i don't want to display in search.
In function.php i use this code.
function fb_search_filter( $query ) {
if ( ! $query->is_admin && $query->is_search ) {
$query->set( 'post_type', array( 'downloads', 'post' ) );
}
return $query;
}
add_filter( 'pre_get_posts', 'fb_search_filter' );
Is this correct? or is better in another way?
Thanks
That's exactly how I would do it :)
This archived topic is closed to new replies.