我希望WP搜索引擎只搜索帖子(现在搜索帖子和页面) - 有人知道怎么做吗?
答案 0 :(得分:3)
首先,在主题的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; ?>