获取 WordPress 子类别的 slugs 和 id

问题描述 投票:0回答:1

我正在获取我所属类别的其中一个孩子的鼻涕虫和 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;
php wordpress categories children
1个回答
1
投票

你可以使用

get_categories('child_of=X')

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

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

欲了解更多信息,您可以查看 - http://codex.wordpress.org/Function_Reference/get_categories

© www.soinside.com 2019 - 2024. All rights reserved.