Warning: This function has been deprecated. Use term_exists() instead.
Check if Term exists.
Description
See also
term_exists()
Parameters
$term
int|string
Required
The term to check
$taxonomy
string
Optional
The taxonomy name to use
Default: ""
$parent
int
Required
ID of parent term under which to confine the exists search.
Return
mixed Get the term ID or term object, if exists.
Source
File: wp-includes/deprecated.php.
View all references
function is_term( $term, $taxonomy = "", $parent = 0 ) {
_deprecated_function( __FUNCTION__, "3.0.0", "term_exists()" );
return term_exists( $term, $taxonomy, $parent );
}