Support

Account

Home Forums General Issues while ( have_rows() ) within while ( have_rows() ) Reply To: while ( have_rows() ) within while ( have_rows() )

  • The sub fields are part of the array you get back when you use get_field(). To see what’s in it

    
    $slides = get_field('slide');
    echo '<pre>'; print_r($slides); echo '</pre>';