一直在考虑类似的问题,但仍不确定:
我可以使用if语句来限制类别名称的总和吗?
<?php
$c = 0;
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
if (get_the_category()=="Uncategorized") :
$c++;
endif;
endwhile;
endif;
echo "Count = $c";
?>
1条答案
按热度按时间yzuktlbb1#
如果我没有理解错的话,您应该能够在
if
中添加这样的内容if (get_the_category()=="Uncategorized" && $c < 5) :
并且
if
语句中的内容将仅针对$c < 5
执行