Skip to content

Instantly share code, notes, and snippets.

@mattradford
Created October 10, 2015 17:02
Show Gist options
  • Save mattradford/3bd1287749e6524d95f4 to your computer and use it in GitHub Desktop.
Save mattradford/3bd1287749e6524d95f4 to your computer and use it in GitHub Desktop.
Super-easy get random ACF repeater row :)
<div class="testimonials__content">
<?php
$repeater = get_field( 'testimonial','options' );
$rand = rand(0, (count($repeater) - 1));
echo $repeater[$rand]['quote'];
echo $repeater[$rand]['citation'];
?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment