我正在使用ACF Repeater插件使用标签显示内容,但这里的标签不正常是我的代码
<ul class="nav nav-tabs course-detail-tabs">
<?php
if( have_rows('test-course') ): $i = 0;
while ( have_rows('test-course') ) : the_row(); $i++;
?>
<li class="<?php if($i == 1){echo "active";}?>"><a href="tab<?php echo $i; ?>" data-toggle="tab"><?php the_sub_field('tname'); ?></a></li>
<?php
endwhile;
endif;
?>
</ul>
<div class="tab-content course-tab-content">
<?php
if( have_rows('test-course') ): $i = 0;
while ( have_rows('test-course') ) : the_row(); $i++;
?>
<div class="tab-pane fade <?php if($i == 1){echo "active in";}?>" id="tab<?php echo $i; ?>">
<section class="course-schedule">
<?php the_sub_field('timg'); ?>
</section>
</div>
<?php
endwhile;
endif;
?>
</div>
有人帮我解决了这个问题吗?