Support

Account

Home Forums General Issues Trying to display a category (taxonomy) field in the fronted Reply To: Trying to display a category (taxonomy) field in the fronted

  • If you are trying to show a field added to a term then you must supply the term or a term “post id”

    
    the_field('plan_type', $term); // in this case a term object
    

    or

    
    the_field('plan_type', 'term_'.$term_id);