Skip to content

Instantly share code, notes, and snippets.

@bibliofille
Created November 3, 2015 22:48
Show Gist options
  • Save bibliofille/eba7fef4b9b7030fb90d to your computer and use it in GitHub Desktop.
Save bibliofille/eba7fef4b9b7030fb90d to your computer and use it in GitHub Desktop.
testimonial slider
<div class="flexslider">
<ul class="slides">
<?php
$rows = get_field('testimonials');
if($rows) {
foreach($rows as $row) {
$output = "<li>\n";
$output .= " " . $image = get_sub_field('testimonial_image');
$output .= " <div class='slide-content'>\n";
$output .= " " . $row['testimonial_content'];
$output .= " </div>\n";
$output .= "</li>\r\n\n";
echo $output;
}
}
?>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment