Skip to content

Instantly share code, notes, and snippets.

@oliwa
Last active December 5, 2018 07:08
Show Gist options
  • Save oliwa/24d222e7878e23c9adcfd3a153b3814e to your computer and use it in GitHub Desktop.
Save oliwa/24d222e7878e23c9adcfd3a153b3814e to your computer and use it in GitHub Desktop.
ACF Repeater FAQ
<div id="container">
<?php if( have_rows('projektinfos') ): ?>
<?php while ( have_rows('faq') ) : the_row(); ?>
<h2 class="headline"><?php the_sub_field('faq-head'); ?></h2>
<div class="copytext"><?php the_sub_field('faq-copy'); ?></div>
<?php endwhile; ?>
<?php else : ?>
<p><mark>Noch keine Repeater Felder angegeben</mark></p>
<?php endif; ?>
</div><!-- // #faq -->
<script>
jQuery(document).ready(function($) {
$(".copytext").hide();
$(".headline").click(function () {
$(this).next(".copytext").slideToggle(300);
$(this).toggleClass("expanded");
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment