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

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