使用ACF转发器插件的选项卡

时间:2016-01-21 11:43:47

标签: php wordpress wordpress-plugin advanced-custom-fields

我正在使用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>

有人帮我解决了这个问题吗?

0 个答案:

没有答案