我有一个自定义的WordPress搜索表单
它显示与我的输入匹配的帖子
但是,当我在任何帖子中都找不到内容时
对于某些输入,它将显示“未找到帖子”部分
对于其他输入,它会显示
绝对没有
我在if块中添加了一个回显,以查看它是否返回空数组,因此显示
似乎它没有执行if块或else块
if ( $the_query->have_posts() ) {
echo '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
echo '</ul>';
} else {
echo 'no posts found';
}