Skip to content

Instantly share code, notes, and snippets.

@nanoanno
Last active August 29, 2017 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanoanno/9733309fe61ce1ce1f1c38a2a09104d4 to your computer and use it in GitHub Desktop.
Save nanoanno/9733309fe61ce1ce1f1c38a2a09104d4 to your computer and use it in GitHub Desktop.
Book By Owner - Locations - Testimonial
<?php
if( have_rows('loc_testimonials') ) :
?>
<h2>Testimonials</h2>
<div class="bbo-columns">
<?php
while( have_rows('loc_testimonials') ) : the_row();
echo '<div class="bbo-column">';
the_sub_field('content');
echo '</div>';
endwhile;
?>
</div>
<?php
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment