Support

Account

Home Forums General Issues Can't get image ID for sub-categories Reply To: Can't get image ID for sub-categories

  • Works like a charm, thanks so much!

    Here’s the solution if it helps anyone:

    $img = get_field('banner_image', 'category_' . get_queried_object()->term_id);
    if ($img) {
        echo $img;
    }