我可以通过第一个示例使其与非重复字段一起使用,但是对于使用重复字段的第二个示例,我无法使 wpauto 函数工作。
<?php echo "<strong>Paragraph</strong>".wpautop($meta['paragraph']).""; ?>
这是我得到的最接近的......我知道在 wpautop 打印它之前函数的第一部分,而 wpautop 到目前为止几乎什么也没做。
<?php
global $index_accordian_repeat;
?>
<?php if($index_accordian_repeat->have_value('panels')):?>
<dl class="accordion">
<?php while( $index_accordian_repeat->have_fields('panels') ) : ?>
<!--title --><dt><a href=""><?php $index_accordian_repeat->the_value('header'); ?></a></dt>
<!--link --><dd><?php $index_accordian_repeat->the_value('link'); ?><br />
<!--content --><?php $my_meta = $index_accordian_repeat->the_value('');
echo wpautop($my_meta['content']); ?></dd>
<?php endwhile; ?>
</dl>
<?php endif; ?>