search box

Posted in: Newsmag
Post count: 31

Hi guys!

Is it possible to make the search box only search for articles and not pages? Or is it possible to disable the search box so I can use a plugin that allows me to control the results of the search, showing only articles.

Thanks!

Post count: 7909

Hi,

Please try this solution to exclude pages from search results – http://www.wpbeginner.com/wp-tutorials/how-to-exclude-pages-from-wordpress-search-results/
Paste the code in functions.php file – http://screencast.com/t/fhQDuIvjJ

function SearchFilter($query) {
	if ($query->is_search) {
	$query->set('post_type', 'post');
	}
	return $query;
	}
	add_filter('pre_get_posts','SearchFilter');

Thanks!

Post count: 31

Thanks Alin! Problem solved!

Post count: 135

This is helpful on how to filter, but what if you want to weight them differently? We have 3 types of formats, but want to weight ‘standard’ (posts) higher than ‘video’ or ‘image’ (also posts, but the format of these are either video or image).

Is there way to make the ‘standard’ posts show up before the ‘video’ or ‘image’ posts? I don’t want to exclude them, just order the results differently.

If this is NOT possible, how do I exclude the ‘video’ or ‘image’ formats from the search results?

Thanks.

format examples

Post count: 9544
Post count: 135

Thanks Chris.

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newsmag’ is closed to new topics and replies.