Skip to content

Instantly share code, notes, and snippets.

@apisklov
Forked from mattradford/random_repeater.php
Created January 18, 2018 16:36
Show Gist options
  • Save apisklov/1dd8d67991aa99283fbb81744cdcbbcd to your computer and use it in GitHub Desktop.
Save apisklov/1dd8d67991aa99283fbb81744cdcbbcd 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