Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active October 10, 2020 03:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/38b0e471f5ae05fe8f9f0f2480a81942 to your computer and use it in GitHub Desktop.
Save braddalton/38b0e471f5ae05fe8f9f0f2480a81942 to your computer and use it in GitHub Desktop.
ACF Repeater Sub Field Using get_sub_field https://wpsites.net/?p=96847
if ( have_rows( 'content_area_light_background' ) ) :
while ( have_rows( 'content_area_light_background' ) ) : the_row();
the_sub_field( 'light_background_sub_field' )
endwhile;
endif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment