Skip to content

Instantly share code, notes, and snippets.

@mwangepatrick
Forked from RichieAHB/gist:5227eb376a0fbd80e11f
Last active August 29, 2015 14:08
Show Gist options
  • Save mwangepatrick/a24b17709300a64d6bd8 to your computer and use it in GitHub Desktop.
Save mwangepatrick/a24b17709300a64d6bd8 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