排除搜索结果中没有内容的帖子

时间:2014-07-17 10:42:06

标签: php wordpress loops

我的WordPress主题中有search.php,使用The Loop搜索结果很好。

我看到的是一些帖子没有内容(仅有标题的空白帖子),它们仍然出现在搜索结果中。这很明显,但我只想列出有一些内容的帖子。

如果帖子没有任何内容,即使其标题有搜索字词,也不应在搜索结果中列出。

我相信你不需要看代码来理解我的担忧。我尝试在所有已知资源上搜索这个答案,没有找到任何确切的信息。

投票不会帮助我。

1 个答案:

答案 0 :(得分:1)

在搜索循环中尝试添加:

global $post;
if ( $post->post_content != '' ) {
    // Display this post because it has content.
} else {
    // This post has empty content so do not display it.
}
相关问题