oliwa
8/18/2016 - 12:42 PM

ACF Repeater FAQ

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>