Skip to content

Instantly share code, notes, and snippets.

@RiodeJaneiroo
Last active March 26, 2019 12:01
Show Gist options
  • Save RiodeJaneiroo/443c285ff87378271ea101e955534dbf to your computer and use it in GitHub Desktop.
Save RiodeJaneiroo/443c285ff87378271ea101e955534dbf to your computer and use it in GitHub Desktop.
[flexible loop ACF] #acf #wordpress #loop
function get_flexible_loop($page_id = null){
if(have_rows('flexible', $page_id)) {
while (have_rows('flexible', $page_id)) {
the_row();
$section_name = str_replace('_', '-', get_row_layout());
get_template_part("/parts/flexible/{$section_name}");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment