Support

Account

Home Forums General Issues Force Select Field Choices (Repeater) to Appear in Alphabetical Order Reply To: Force Select Field Choices (Repeater) to Appear in Alphabetical Order

  • The simplified PHP to get a better idea:

    <?php
    
    function acf_repeater_shortcode() {
    
    	ob_start();
    
    	if (have_rows('Table')) : ?>
    
    <table class="Table">
    
    	<tr>
    		<th class="Country">Chart</th>
    		<th class="Points">Position</th>
    	</tr>
    
    	<?php while (have_rows('Table')) : the_row(); ?>
    
    	<tr>
    		<td class="Country"><?php the_sub_field('Country'); ?></td>
    		<td class="Points"><?php the_sub_field('Points'); ?></td>
    	</tr>
    
    	<?php endwhile; ?>
    
    </table>
    
    <?php endif; ?>
    
    <?php return ob_get_clean();
    
    }
    
    add_shortcode('Table', 'acf_repeater_shortcode');