Support

Account

Home Forums General Issues Adding fields to a taxonomy term Reply To: Adding fields to a taxonomy term

  • You need to get the terms the CPT is added to using get_the_terms()

    Then you need to loop over those terms an get the fields for it

    
    foreach ($terms as $term) {
      $value = get_field('your field name', $term);
    }