我想自动增加每个“ id”中的数字,我使用ACF PRO并选择“ Repeater”类型。 我在下面尝试了这些代码,但没有用
<?php
$counter = -1;
if( have_rows('thongtin') ):
while ( have_rows('thongtin') ) : the_row(); $counter++ ?>
<?php get_template_part('templates/listmatcat'); ?>
<?php endwhile;
else :
endif;
?>
// The code in templates/listmatcat.php file
// I want to auto increase the number with #pr_file
<tr>
<td class="col col1">
<p class="name r"><?php the_sub_field('masomatcat') ?></p>
<a href="#pr_file<?php echo $counter; ?>" class="open_profile" rel="pr_dt"><img src="<?php the_sub_field('anhmatcattrai'); ?>" alt="" /></a>
<div class="clearAll"></div>
<a href="#pr_file<?php echo $counter; ?>" class="open_profile"><span class="active_s"></span></a>
</td>
<td class="col_center"></td>
<td class="col col2" style="text-align:left">
<div class="info"><img src="<?php the_sub_field('anhmatcatphai'); ?>" alt="" /></div>
</td>
</tr>```
答案 0 :(得分:1)
这似乎是对get_template_part()函数的限制。根据{{3}}的说法,您想做这样的事情:
include(locate_template('[YOUR-FILE-NAME].php'));
或者,如果实际上不需要为循环的内容使用外部文件(如果该文件只使用过该文件),则只需删除get_template_part()并将内容直接放入循环中即可。 / p>