WP中的搜索结果存在问题(不显示完整帖子)
1 个回答
- 投票数
我不知道在搜索页面条件内编写的代码.但是以下代码而不是您的代码必须工作:
if (is_search()) {
the_content();
}
尝试让我知道.
I'm unaware about the code written within the condition for search page. But the following code instead of your one would have to work:
if (is_search()) {
the_content();
}
Try and let me know.
在此改进中,在搜索结果中显示了该帖子,但没有类别(我认为是隐藏的),并且帖子中的链接断开了. 我在这个主题中有一段代码,我认为是对此负责的. 这是代码:
我想在搜索结果中显示他原封不动的完整帖子,没有任何限制.此代码可能是问题还是其他原因?该主题没有
category.php
或search.php
,该代码来自content.php
.可以解决这个问题(也许有一个插件)吗?