Split an ACF flexible content field into template parts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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