按类别选择WordPress PHP

w3nuxt5m  于 2022-12-21  发布在  PHP
关注(0)|答案(1)|浏览(110)

一直在考虑类似的问题,但仍不确定:
我可以使用if语句来限制类别名称的总和吗?

<?php

$c = 0;
if ( have_posts() ) :
    while ( have_posts() ) :
        the_post(); 

       if (get_the_category()=="Uncategorized") :
          $c++;           
       endif;
        
    endwhile;
     
    
endif;
echo "Count = $c";
        
?>
yzuktlbb

yzuktlbb1#

如果我没有理解错的话,您应该能够在if中添加这样的内容
if (get_the_category()=="Uncategorized" && $c < 5) :
并且if语句中的内容将仅针对$c < 5执行

相关问题