Support

Account

Home Forums General Issues WordPress Advanced Custom field get_field_object('field_name') don't work Reply To: WordPress Advanced Custom field get_field_object('field_name') don't work

  • // vars
    $queried_object = get_queried_object();
    $taxonomy = $queried_object->taxonomy;
    $term_id = $queried_object->term_id;

    // load thumbnail for this taxonomy term (term object)
    $thumbnail = get_field(‘thumbnail’, $queried_object);

    // load thumbnail for this taxonomy term (term string)
    $thumbnail = get_field(‘thumbnail’, $taxonomy . ‘_’ . $term_id);

    Not working on my end