我可以使用第一个示例使用非重复字段,但是第二个示例使用重复字段我无法使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; ?>
答案 0 :(得分:0)
这不是最简单的答案!?我要求打印它的the_value然后我用另一种方式问我给了一个数组。但这就是它的工作原理......
<?php $content = $index_accordian_repeat->get_the_value('content');?> <?php echo wpautop($content); ?>
我需要返回值但不打印它然后取值并回显它。呼!