Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created July 14, 2014 13:20
Show Gist options
  • Save tjhole/464c319b2555caa3eaa4 to your computer and use it in GitHub Desktop.
Save tjhole/464c319b2555caa3eaa4 to your computer and use it in GitHub Desktop.
ACF: Flexible Content
<?php
// check if the flexible content field has rows of data
if( have_rows('flexible_content_field_name') ):
// loop through the rows of data
while ( have_rows('flexible_content_field_name') ) : the_row();
if( get_row_layout() == 'paragraph' ):
the_sub_field('text');
elseif( get_row_layout() == 'download' ):
$file = get_sub_field('file');
endif;
endwhile;
else :
// no layouts found
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment