if(have_posts()):
while(have_posts()):
the_post();
the_content();
endwhile;
endif;
如果没有if条件,以下代码也可以正常工作:
while(have_posts()):
the_post();
the_content();
endwhile;
谢谢。
最合适的回答,由SO网友:Jacob Peattie 整理而成
您只需要if ( have_posts() ) :
如果,作为函数suggets的名称,如果没有帖子,您需要做一些不同的事情。这类似于显示“找不到帖子”消息
但你只需要在那些可以不显示帖子的模板上使用,比如归档和搜索。对于单个帖子和页面模板if
是不必要的。