Support

Account

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!