is_term

函数
is_term ( $term, $taxonomy = '', $parent = 0 )
参数
  • (int|string) $term The term to check
    Required:
  • (string) $taxonomy The taxonomy name to use
    Required:
    Default: (empty)
  • (int) $parent ID of parent term under which to confine the exists search.
    Required:
返回值
  • (mixed) Get the term ID or term object, if exists.
相关
  • term_exists()
定义位置
相关方法
has_termis_timeis_yearis_dateis_email
引入
2.3.0
弃用
3.0.0

is_term是一个WordPress函数,它检查给定的ID是否是指定分类法中的一个术语。它需要两个参数,术语的ID和分类法的名称。如果该术语在指定的分类法中,它返回一个布尔值true,否则返回false。

检查Term是否存在。

function is_term( $term, $taxonomy = '', $parent = 0 ) {
	_deprecated_function( __FUNCTION__, '3.0.0', 'term_exists()' );
	return term_exists( $term, $taxonomy, $parent );
}

常见问题

FAQs
查看更多 >