在Wordpress中排除儿童并计算foreach中的父母

时间:2017-07-05 09:30:00

标签: php wordpress

我想在第四个父类别中添加元素。我想从结果中排除子类别。

问题:在排除子类别之前我在计算。我想在排除儿童类别后计算。

foreach ($author_posts as $author_post ) {
    $i=0;
    foreach(get_the_category($author_post->ID) as $category) {   
        if ($category->category_parent < 1){
            if($i % 4 === 0)   { 
                $coco= 'fourth';         
            } else {
                $coco = '';
            }                      
            $i++;
        }
    }
}

0 个答案:

没有答案