Answers:
是的,您可以使用using 属性使用get_categories()'child_of'
。例如,类别ID为17的所有子类别:
$args = array('child_of' => 17);
$categories = get_categories( $args );
foreach($categories as $category) {
echo '<p>Category: <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> ';
echo '<p> Description:'. $category->description . '</p>';
echo '<p> Post Count: '. $category->count . '</p>';
}
这将获得所有属于后代的类别(即子孙)。
如果只想显示直接后代的类别(即仅子类别),则可以使用'parent'
属性。
$args = array('parent' => 17);
$categories = get_categories( $args );
foreach($categories as $category) {
echo '<p>Category: <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> ';
echo '<p> Description:'. $category->description . '</p>';
echo '<p> Post Count: '. $category->count . '</p>';
}
get_terms
一下,因为这有助于使用户熟悉通用术语提取功能,因为类别函数在某种程度上特定于内置分类法( (并非在所有情况下)。当然,您不必同意,这只是一个建议...;)
get_terms
请发表答案吗?