gpt4 book ai didi

php - WordPress 搜索功能仅搜索帖子

转载 作者:行者123 更新时间:2023-12-03 00:19:52 26 4
gpt4 key购买 nike

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

最佳答案

答案在这里

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');
?>

关于php - WordPress 搜索功能仅搜索帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4198842/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com