如何获取已命名类别的子ID列表?

时间:2011-01-12 作者:Scott B

例如,我相信我可以使用get\\u categories()或wp\\u list\\u categories()并传递“child\\u of”参数来实现这一点,但这将返回比我需要的数据集大得多的数据集。

是否有直接调用以简单列表(1、2、3、5等)的形式返回任何类别的子ID?

1 个回复
最合适的回答,由SO网友:goldenapples 整理而成

Try this:

get_terms( \'category\', "child_of=$parent&fields=ids" );
// should return an array containing the ID\'s of children of term $parent
结束

相关推荐