检测类别是否为父级 - 在wordpress模板category.php上

时间:2013-11-26 15:01:39

标签: php wordpress categories

我在我的主题中创建了一个category.php模板,并想要一些代码来检测被查看的类别是否是父类。如果是,那么我想将变量设置为一个值,如果不是,我想将其设置为另一个值。这可能吗?

1 个答案:

答案 0 :(得分:0)

试试这个,并在其中指定值。

<?php $this_category = get_category($cat); ?>

<?php if ($this_category->category_parent == 0) { ?>
    <!-- If Parent -->
<?php } else { ?>
    <!-- Else This -->
<?php } ?>