Home › Forums › General Issues › Query custom taxonomy › Reply To: Query custom taxonomy
Hi @bystefu
I’m afraid there’s no easy way to do this. ACF saves the custom fields values for the terms in wp_options table in this format: custom-taxonomy-slug_99_custom-field-name
, where “custom-taxonomy-slug” is the slug of your custom taxonomy, “99” is the id of the terms and “custom-field-name” is the name of your custom field.
For this kind of situation, you need to use the wpdb class to query them and get the term IDs. After that, you can get the terms by using the get_terms() function.
I hope this makes sense. Thanks!
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.