將下面這段代碼添加到single.php中需要顯示父分類別名的位置,就可以顯示出父分類的別名。

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