Created
November 21, 2013 20:22
-
-
Save rickalee/7588915 to your computer and use it in GitHub Desktop.
Random Testimonial using Advanced Custom Fields Options Page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$rows = get_field( 'testimonials', 'option' ); | |
$row_count = count($rows); | |
$i = rand(0, $row_count - 1); | |
echo '<blockquote><p>' . $rows[$i]['quote'] . '</p>'; | |
echo '<cite>' . $rows[$i]['cite'] . '</cite></blockquote>'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment