我希望 WP 搜索引擎只搜索帖子(现在它搜索帖子和页面) - 有人知道该怎么做吗?
问问题
626 次
1 回答
4
所以首先,在你的主题的functions.php文件中,添加这个函数:
function is_type_page() { // Check if the current post is a page
global $post;
if ($post->post_type == 'page') {
return true;
} else {
return false;
}
}
接下来,在主题的 search.php 文件中(显示搜索结果的位置,您希望在循环之后添加以下行。它应该如下所示:
<?php while (have_posts()) : the_post(); ?>
<?php if (is_type_page()) continue; ?>
于 2012-12-26T11:26:50.933 回答