我正在使用bootstrap主题处理wordpress。我只使用高级自定义字段:Repeater Field插件,我为此制作模板。模板显示选项卡中的数据是一种手风琴模式,它的所有动态都是动态的。 evrything对我来说工作正常,但我的问题是,我希望在2手风琴之后剩下的数据将显示在下一页意味着我只想对它应用分页,所以我只是在我的模板中使用。但它不工作。另一件事是该标签在页面或文本编辑器中正常工作。
以下是我动态显示转发器字段数据的代码:
<div class="accordion" id="top100">
<?php $gcount=get_post_meta($post->ID, 'restructuring_list', true);
for($i=0;$i<$gcount;$i++){
$name=get_post_meta($post->ID, "restructuring_list_".$i."_name", true);
$Uname = str_replace(" ","",$name);
$designation=get_post_meta($post->ID, "restructuring_list_".$i."_designation", true);
$compony=get_post_meta($post->ID, "restructuring_list_".$i."_compony", true);
$country=get_post_meta($post->ID, "restructuring_list_".$i."_country", true);
$type=get_post_meta($post->ID, "restructuring_list_".$i."_type", true);
$description=get_post_meta($post->ID, "restructuring_list_".$i."_description", true);
$next_page=get_post_meta($post->ID, "restructuring_list_".$i."_next_page", true);
?>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#top100" href="#<?php echo $Uname?>"><strong><?php echo $name?></strong> <br><?php echo $designation;?><br><?php echo $compony;?> <?php echo $country;?></a>
</div>
<div id="<?php echo $Uname?>" class="accordion-body collapse">
<div class="accordion-inner"><?php echo $description?></div>
</div>
</div>
<?php if($i ==0){echo '<!--nextpage-->'; }?>
<?php }?>
</div>
这是我上面使用的分页代码:
<?php if($i ==0){echo '<!--nextpage-->'; }?>
我也使用它,但它没有显示任何内容:
<?php echo do_shortcode('[<!--nextpage-->]'); ?>