Support

Account

Home Forums Front-end Issues ACF Data not visible from loop Reply To: ACF Data not visible from loop

  • No, what is the name of your repeater and what is the name of the sub field?

    You can either do

    
    $links = get_field('links');
    

    or

    
    while (have_rows('links')) {
      the_row();
      $link = get_sub_field('your_sub_field_name_here');
    }