我想在第四个父类别中添加元素。我想从结果中排除子类别。
问题:在排除子类别之前我在计算。我想在排除儿童类别后计算。
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++;
}
}
}