tags:

views:

19

answers:

1

Hi there, I'm trying to find a conditional tag for recognizing the opened term of custom taxonomy. Let's say I have a taxonomy "map" and I'm browsing the taxonomy's term called 'USA' with ID 50. Is there something like deprecated is_term?

Like:

<?php if(is_term(50, 'map')) : ?>
...
<?php endif; ?>

Thanks a lot...

A: 

http://codex.wordpress.org/Function_Reference/is_term mentions that is_term was replaced by term_exists

Victor Hurdugaci
Yes, it was... It wasn't a conditional tag to test if you're on a certain term page or not.
Machi