我得到了我的类别孩子之一的蛞蝓和 id。
不知道如何从所有孩子那里获取蛞蝓和身份证。
$incat = get_category_by_slug("my-category");
foreach((get_the_category()) as $inchild):
if (cat_is_ancestor_of($incat, $inchild)):
$my_category_name = strtolower( str_replace(" ", "-", $inchild->slug) );
$my_category_id = $inchild->cat_ID;
endif;
endforeach;