Check if term is in a taxonomy?

Is there a function that does something like:

is_in_taxonomy($term, $taxonomy)

Where it returns true if $taxonomy has that $term. ????

Read More

Thanks!

Related posts

Leave a Reply

2 comments

  1. You’re probably looking for term_exists():

    <?php term_exists( $term, $taxonomy, $parent ); ?>
    

    $term is required (obviously).

    Both $taxonomy and $parent are optional, but if you want to determine if a specific taxonomy has a given term, just pass the registered taxonomy name via the $taxonomy parameter.