wordpress - 显示所选类别的父类别

时间:2015-04-06 15:04:33

标签: php wordpress wordpress-theming

我可以通过以下方式显示所选的类别名称:

    <?php if (have_posts()) :
    single_cat_title();
    while (have_posts()) : the_post();?>
...

问题是我也无法显示所选类别的父类别名称。请你帮助我好吗。

1 个答案:

答案 0 :(得分:1)

您可以使用get_category_parents()辅助函数。

<?php if (have_posts()) :
single_cat_title();
while (have_posts()) : the_post();
echo get_category_parents($cat, TRUE, ' &raquo; ');
?>

您可能希望在循环中执行此操作,而不是在其上方。