函数原型
is_tax( string|string[] $taxonomy = ”, int|string|int[]|string[] $term = ” ): bool
函数描述
Determines whether the query is for an existing custom taxonomy archive page.
是否弃用
未弃用
函数参数
-
$taxonomy
string|string[]
Optional -
Taxonomy slug or slugs to check against.
Default:
''
-
$term
int|string|int[]|string[]
Optional -
Term ID, name, slug, or array of such to check against.
Default:
''
函数返回值
bool Whether the query is for an existing custom taxonomy archive page.
True for custom taxonomy archive pages, false for built-in taxonomies (category and tag archives).
函数位置
File: wp-includes/query.php
.
函数源码
function is_tax( $taxonomy = '', $term = '' ) {
global $wp_query;
if ( ! isset( $wp_query ) ) {
_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' );
return false;
}
return $wp_query->is_tax( $taxonomy, $term );
}
源码链接
变更日志
Version | Description |
---|---|
2.5.0 | Introduced. |