0

我可以通过第一个示例使其与非重复字段一起使用,但是对于使用重复字段的第二个示例,我无法使 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; ?>
4

1 回答 1

0

这不是最简单的答案吗!?我要求将打印它的 the_value ,然后我以另一种方式询问,它只给了我一个数组。但这就是使它起作用的原因...

<?php $content = $index_accordian_repeat->get_the_value('content');?> <?php echo wpautop($content); ?>

我需要返回该值但不打印它,然后获取该值并回显它。呸!

于 2012-07-18T15:44:03.380 回答