如何使用_ategory()仅显示子类别;

时间:2011-03-12 作者:João

我在用the_category(); 在我的类别上。显示类别名称的php模板-问题是它附加了类别的父类别。是否有任何方法可以使用the_category();?

1 个回复
SO网友:Anthony Keating

<?php
foreach((get_the_category()) as $category) {
    if ($category->category_parent  == \'7\') {
        echo \'<a href="\' . get_category_link( $category->term_id ) . \'" title="\' . sprintf(__( "View all posts in %s" ), $category->name ) . \'" \' . \'>\' . $category->name.\'</a> \';
    }
}
?>  
您只需将7替换为您想要包含的任何类别

结束