Skip to content

Instantly share code, notes, and snippets.

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 schutzsmith/005da56edd576b3a5075cc02e33944e1 to your computer and use it in GitHub Desktop.
Save schutzsmith/005da56edd576b3a5075cc02e33944e1 to your computer and use it in GitHub Desktop.
Split an ACF flexible content field into template parts
<?php
// In a post/page template, loop over the ACF flexible field layouts and load the partial
// responsible for rendering the layout.
while ( the_flexible_field('my_flexi_field') ) {
get_template_part( 'components/'. get_row_layout() );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment