WordPress获取祖先ID函数:get_ancestors
WordPress函数get_ancestors可以用于获取分类的祖先ID,或页面的祖先ID,包括所有的上级。…
WordPress函数get_ancestors可以用于获取分类的祖先ID,或页面的祖先ID,包括所有的上级。
get_ancestors( int $object_id, string $object_type = '', string $resource_type = '' )
函数参数
$object_id
整数
对象ID
$object_type
字符串
对象类型,可用值:page、post、category或其他分类法名称
$resource_type
字符串
资源的类型,可用值:post_type、taxonomy
函数使用示例
获取ID为7的分类的所有祖先分类:
$ids = get_ancestors(7, 'category');
获取ID为15的所有祖先页面:
$ids = get_ancestors(15, 'page');
扩展阅读
get_ancestors()函数位于:wp-includes/taxonomy.php
相关函数:
- get_term()
- get_term_parents_list()
类别:WordPress函数讲解、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!