0

我得到了我的类别孩子之一的蛞蝓和 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;
4

1 回答 1

1

您可以使用

get_categories('child_of=X');

其中“X”是您的父类别名称..

它将返回一个可以通过 foreach 操作的数组。

有关更多信息,您可以结帐 - http://codex.wordpress.org/Function_Reference/get_categories

于 2013-03-22T06:36:51.337 回答