ใช่คุณสามารถใช้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>';
}