Last active
December 5, 2018 07:08
-
-
Save oliwa/24d222e7878e23c9adcfd3a153b3814e to your computer and use it in GitHub Desktop.
ACF Repeater FAQ
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
<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