例如,我相信我可以使用get\\u categories()或wp\\u list\\u categories()并传递“child\\u of”参数来实现这一点,但这将返回比我需要的数据集大得多的数据集。
是否有直接调用以简单列表(1、2、3、5等)的形式返回任何类别的子ID?
最合适的回答,由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