如何使用下面的代码限制显示的标记数,而不必添加$count=0;
或if ($count <=
要查询,但只针对主页,并且每套帖子的编号不同?
<?php the_tags(\'\',\'\',\'\');?>
我不想添加count选项,因为我的帖子循环是用该选项设置的,而将其添加到标签查询只会使我的帖子失效。
这是我在帖子中使用的查询。
<?php if (have_posts()) :
$count = 0;
while (have_posts()) : the_post();
$count++;
if ($count == 1) : ?> <!--first box -->
<div class="style-1"><?php the_content(); ?>
<?php elseif ($count > 1 && $count <5) : ?></div> <!--next three boxes -->
<div class="style-2"><?php the_content(); ?></div>
<?php elseif ($count == 5) : ?> <!-- box five and break div -->
<div class="style-2"><?php the_content(); ?></div>
<div class="first-break-div"><?php /* the content from first break div */ ?> </div>
<?php elseif ($count >5 && $count < 11) : ?> <!--next five boxes -->
<div class="style-3"><?php the_content(); ?></div>
<?php elseif ($count == 12) : ?> <!--last box and last break div -->
<div class="style-3"><?php the_content(); ?></div>
<div class="last-break-div"><?php /* the content from last break div */ ?> </div>
<?php endif;
endwhile;
endif; ?>`