Wordpress搜索功能仅搜索帖子

2022-08-30 18:39:42

我想使用wordpress搜索功能,但我希望它只搜索我的博客文章,并从查询中排除我的静态页面。如何做到这一点?我不反对使用插件。


答案 1

答案就在这里

http://www.shilling.id.au/2011/06/23/wordpress-search-only-show-post-and-not-pages/

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

答案 2

只需添加到主题搜索表单...问候!<input type="hidden" name="post_type" value="post" />


推荐