Support

Account

Home Forums Add-ons Repeater Field Paginated Repeater Field: How to add extra page in the beginning? Reply To: Paginated Repeater Field: How to add extra page in the beginning?

  • You can use the following code (just replace the “CODE” with the code you already have).

    <?php if ( ! get_query_var( 'page' ) ) : ?> 
    	<?php the_field( 'the_field_you_want_to_display' ); ?>
    <?php else : ?>
    	CODE
    <?php endif; ?>