标签: 父分类别名

  • single文章页获取父分类别名

    将下面这段代码添加到single.php中需要显示父分类别名的位置,就可以显示出父分类的别名。

    <?php
    $category = get_the_category(); 
    $parent = get_category($category[0]->category_parent);
    echo $parent->slug;
    ?>