Below is my code, as i try to add html / css tags my page errors. I am using wordpress
<?php
// check if the repeater field has rows of data
if( have_rows('lyrics') ):
// loop through the rows of data
while ( have_rows('lyrics') ) : the_row();
// display a sub field value
the_sub_field('lyric_title');
// display a sub field value
the_sub_field('lyrics_text');
endwhile;
else :
// no rows found
endif;
?>
I cannot figure out to:
- how to add a div around each repeat for styling
- Add a h3 to the_sub_field('lyric_title');
- Add a p with a class to the_sub_field('lyrics_text');