Home › Forums › Add-ons › Repeater Field › Randomizing/Shuffling Repeater with Advanced Loop
Hi there. I am trying to shuffle the output/order of a repeater field. Everything I’m finding about randomizing/shuffling all utilize the basic loop. I’m using the advanced and would prefer to utilize that for things like outputting the array of classes.
<?php if( have_rows('clients') ): ?>
<div class="outerContainer clientGrid clearfix">
<?php while( have_rows('clients') ): the_row();
// vars
$name = get_sub_field('client_name');
$img = get_sub_field('logo');
$docVid = get_sub_field('doc_or_vid');
$docURL = get_sub_field('document_location');
$vidURL = get_sub_field('video_url');
?>
<div class="clientItem clearfix <?php the_sub_field('areas'); ?>">
<?php if($docURL && $docVid == 'doc'): ?>
<a target="_blank" class="clientLink" href="<?php echo $docURL; ?>">
<span class="sprite"></span>
</a>
<?php endif; ?>
<?php if($vidURL && $docVid == 'vid'): ?>
<a target="_blank" class="clientLink clientVid external" href="<?php echo $vidURL; ?>">
<span class="sprite"></span>
</a>
<?php endif; ?>
<?php if( $img ): ?>
<img class="client-logo" src="<?php echo $img; ?>" alt="<?php echo $name; ?>" />
<?php endif; ?>
</div>
<?php endwhile; ?>
</div><!-- ./clientGrid -->
<?php endif; ?>
Hi @rkeefer
I believe you can use the acf/load_value hook to shuffle the returned data like this:
function my_acf_load_value3( $value, $post_id, $field )
{
shuffle($value);
return $value;
}
add_filter('acf/load_value/name=repeater_field_name', 'my_acf_load_value3', 10, 3);
Where “repeater_field_name” is the name of your repeater.
I hope this helps 🙂
So should it be as simple as inserting it like this:
<?php if( have_rows('clients') ): ?>
<?php
function my_acf_load_value3( $value, $post_id, $field )
{
shuffle($value);
return $value;
}
add_filter('acf/load_value/name=clients', 'my_acf_load_value3', 10, 3);
?>
<div class="outerContainer clientGrid clearfix">
<?php while( have_rows('clients') ): the_row();
// vars
$name = get_sub_field('client_name');
$img = get_sub_field('logo');
$docVid = get_sub_field('doc_or_vid');
$docURL = get_sub_field('document_location');
$vidURL = get_sub_field('video_url');
?>
<div class="clientItem clearfix <?php the_sub_field('areas'); ?>">
<?php if($docURL && $docVid == 'doc'): ?>
<a target="_blank" class="clientLink" href="<?php echo $docURL; ?>">
<span class="sprite"></span>
</a>
<?php endif; ?>
<?php if($vidURL && $docVid == 'vid'): ?>
<a target="_blank" class="clientLink clientVid external" href="<?php echo $vidURL; ?>">
<span class="sprite"></span>
</a>
<?php endif; ?>
<?php if( $img ): ?>
<img class="client-logo" src="<?php echo $img; ?>" alt="<?php echo $name; ?>" />
<?php endif; ?>
</div>
<?php endwhile; ?>
</div><!-- ./clientGrid -->
<?php endif; ?>
Think I figured it out. Rather than put it in the actual page template, it goes in the functions.php:
// Function to randomize Advanced Custome Fields' Repeaters
function my_acf_load_value3( $value, $post_id, $field )
{
shuffle($value);
return $value;
}
// Randomize ACF Clients' Repeater
add_filter('acf/load_value/name=clients', 'my_acf_load_value3', 10, 3);
You must be logged in to reply to this topic.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We’re hard at work on ACF 6.1, and Beta 1 is now available 🚀
— Advanced Custom Fields (@wp_acf) March 16, 2023
This release includes custom post type and taxonomy registration, an improved experience when selecting field types, PHP 8.1 and 8.2 compatibility, and more!
Let’s take a look 🧵https://t.co/Y0WcAT11l4
© 2023 Advanced Custom Fields.
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Cookie Policy. If you continue to use this site, you consent to our use of cookies.