Show/Limit search to only blog posts – Remove pages from search in WordPress

WordPress PHP July 23, 2026

Add this code in codesnippets (Php)

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

Hurrah – Done