Support

Account

Home Forums Front-end Issues I can`t make field visible in fronend. Reply To: I can`t make field visible in fronend.

  • to display field from a term you need to supply the term in your code that would mean something like this

    
    // get a field value
    $value = get_field('field name', $category);
    

    or this

    
    // display a field value
    the_field()'field name', $category);;