Здравствуйте, столкнулся с проблемой. табы на Wordpress работают некорректно, При клике на таб открываются все сразу. И все тесты таб находятся под последним.
<div class="tab">
<?php query_posts('cat=8');
while (have_posts()) : the_post();?>
<input id="$post_ID" type="checkbox" name="tabs">
<label for="$post_ID"><h3><?php the_title() ?></h3></label>
<?php endwhile;
wp_reset_query();
?>
<div class="tab-content">
<?php query_posts('cat=8');
while (have_posts()) : the_post();?>
<p>
<?php the_content('$post_ID'); ?>
</p>
<?php endwhile; wp_reset_query(); ?>
</div>
</div>
Подскажите, пожалуйста что не так?
Я переставил части кода, табы все равно открываются вместе.