Support

Account

Home Forums ACF PRO displaying a custom field in category… Reply To: displaying a custom field in category…

  • Hi @aaronbennett

    I think you are on the right path. Maybe you can try this code:

    if(get_field('previous_issue_link', $taxonomy . '_' . $term_id)){
        the_field('previous_issue_link', $taxonomy . '_' . $term_id);
    }

    Hope this helps!