How to get the current taxonomy term ID (not the slug) in WordPress? How to get the current taxonomy term ID (not the slug) in WordPress? wordpress wordpress

How to get the current taxonomy term ID (not the slug) in WordPress?


Nevermind! I found it :)

get_queried_object()->term_id;


Simple and easy!

get_queried_object_id()


Here's the whole code snippet needed:

$queried_object = get_queried_object();$term_id = $queried_object->term_id;