函数原型
is_taxonomy_hierarchical( string $taxonomy ): bool
函数描述
Determines whether the taxonomy object is hierarchical.
是否弃用
未弃用
函数参数
-
$taxonomy
string
Required -
Name of taxonomy object.
函数返回值
bool Whether the taxonomy is hierarchical.
函数位置
File: wp-includes/taxonomy.php
.
函数源码
function is_taxonomy_hierarchical( $taxonomy ) {
if ( ! taxonomy_exists( $taxonomy ) ) {
return false;
}
$taxonomy = get_taxonomy( $taxonomy );
return $taxonomy->hierarchical;
}
源码链接
变更日志
Version | Description |
---|---|
2.3.0 | Introduced. |