G
G
Gleb Zhukov2018-08-06 16:47:58
WordPress
Gleb Zhukov, 2018-08-06 16:47:58

How can I find out which taxonomy a label belongs to?

I implement product filters, not Woocommerce.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Igor Vorotnev, 2018-08-10
@machetero

An object of type WP_Term contains the name of the taxonomy in the $term->taxonomy property.
Get_term( $term_id ) is used to get the term object.

$term = get_term( $term_id );
echo $term->taxonomy;

If you are on the archive page for a given term, you can get the term object with get_queried_object().

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question