我正在尝试获取当前类别的孩子(没有孙子)的类别ID。使用以下方法:
$category = get_category(get_query_var( \'cat\' ));
// get category ID
$catid = $category->cat_ID;
我可以获取当前类别ID。但是,在
WP_Query
结果显示在父、子、孙子类别中发布的帖子。
是否有任何方法可以获取当前类别的子类别ID?
Update #1:
样本类别结构如下:
- Parent Category x
-- Child One
--- Grand Child one
--- Grand Child two
-- Child Two
--- Grand Child one
--- Grand Child two
一次在
Parent Category x
我们有身份证了,现在我要
Child Category id
. 一旦进入
Child Category x
, 我想要
Grand Child Category id
用于:
wordpresss/category/parent : posts published in child category
wordpresss/category/parent/child : posts published in grand child category