Home / Admin / Search Only Post
Duplicate Snippet

Embed Snippet on Your Site

Search Only Post

Limit the search to posts only, ignore all pages.

Code Preview
php
<?php
function search_only_post($query) {
    if (!is_admin() && $query->is_main_query() && $query->is_search) {
        $query->set('post_type', 'post');
    }
    return $query;
}
add_filter('pre_get_posts', 'search_only_post');   

Comments

Add a Comment