我正在获取我所属类别的其中一个孩子的鼻涕虫和 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;
你可以使用
get_categories('child_of=X')
;
其中“X”是您的父类别名称..
它将返回一个可以通过foreach操作的数组。
欲了解更多信息,您可以查看 - http://codex.wordpress.org/Function_Reference/get_categories