Skip to content

Instantly share code, notes, and snippets.

@RichieAHB
Created October 30, 2014 12:06
Show Gist options
  • Save RichieAHB/5227eb376a0fbd80e11f to your computer and use it in GitHub Desktop.
Save RichieAHB/5227eb376a0fbd80e11f to your computer and use it in GitHub Desktop.
<?php if ( function_exists( 'have_rows' ) && have_rows( 'page_section' ) ) : ?>
<?php while ( have_rows( 'page_section' ) ) : the_row(); ?>
<?php get_template_part( 'content', 'page-section' ); ?>
<?php endwhile; ?>
<?php if (is_front_page() && count( get_field( 'page_section' ) ) > 1) : ?>
<span class="scroll-down"></span>
<?php endif; ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment