让我们抛开一切,但要循环:
if ($my_query->have_posts()) {
// open container around all posts
while ($my_query->have_posts()) :
$my_query->the_post();
// output for every post
endwhile;
// close containers around all posts
}
如您所见:
贴子的输出进入内部while
像往常一样循环;
打开较大的容器需要检查if
我们有帖子和while
;
关闭较大的容器应在endwhile
, 但还是在里面if
块