WordPress检查分类法是否支持层级函数:is_taxonomy_hierarchical

WordPress函数is_taxonomy_hierarchical用来检查分类法是否支持层级

1
is_taxonomy_hierarchical( string $taxonomy )

函数参数

$taxonomy

字符串

分类法名称或对象

函数使用示例

1
2
3
if(!is_taxonomy_hierarchical('tag')) {
    echo '标签不支持层级';
}

扩展阅读

is_taxonomy_hierarchical()函数位于:wp-includes/taxonomy.php

相关函数:

  • taxonomy_exists()
  • get_taxonomy()
原文链接:https://xiaohost.com/2280.html,转载请注明出处。
0