Support

Account

Home Forums Add-ons Repeater Field Multiple select values in repeater

Solved

Multiple select values in repeater

  • I am using the repeater feature – how can I get a multi-select to show values? The field I label for the multi-select is topic

    <?php if( have_rows(‘resources’) ): ?>
    <ul id=”Resource-Grid” class=”list-unstyled”>
    <?php while( have_rows(‘resources’) ): the_row();

    // vars
    $date = get_sub_field(‘date’);
    $featured = get_sub_field(‘featured’);
    $type = get_sub_field(‘type’);
    $topic = [HERE IS WHAT I NEED HELP WITH]
    $data_date = get_sub_field(‘data_date’);
    $link = get_sub_field(‘link’);
    $image = get_sub_field(‘image’);
    $title = get_sub_field(‘title’);
    $icon = get_sub_field(‘icon’);
    $download_label = get_sub_field(‘download_label’);
    $label_type = get_sub_field(‘label_type’);
    ?>

Viewing 1 post (of 1 total)

The topic ‘Multiple select values in repeater’ is closed to new replies.