Support

Account

Home Forums General Issues Values from another page but limit the results Reply To: Values from another page but limit the results

  • Hi @strohy85

    A simple counter will allow you to limit the results of a loop.

    Like so:

    
    <?php $i = 0; ?>
    <?php while( has_sub_field('gallery', '2850') ): ?>
    	<?php $i++; ?>
    	<?php if($i > 6){ break; } ?>
    	
    	<!-- HTML here -->
    	
    <?php endwhile; ?>