如何在 WordPress 中添加可编辑的手风琴

How to add an editable accordion in WordPress

我正在尝试向 WordPress 中的页面添加手风琴。

问题是,我需要可以从 CMS 编辑手风琴,如果可能的话,用户可以在不同的帖子上添加手风琴。

我已经调查过了,发现 Advanced Custom Fields Repeater 可能是可行的方法,但还没有找到关于如何实现它的好读物。

任何帮助都会很棒。

我使用 Advanced Custom Fields Repeater 来做一些非常相似的事情,它确实让我的用户能够输入可以重复的内容。这很有价值,因为您可以将每个部分包裹在 html 中,然后可以包裹整个东西,这样您就可以做手风琴了。

这是中继器代码,我的是事件代码。

if (get_field('monthly_events')){
    $events = get_field('monthly_events'); 

    foreach($events as $event) {
        ?>
        <li>
            <strong><?php echo $event['event_name']; ?></strong>
            <p><?php echo $event['event_description']; ?></p>
        </li>
        <?php
    }
}

您应该阅读他们的说明。您必须使用它们的界面创建和命名您的字段,将其应用于新的 post 类型,然后将手风琴 html 放入该 post 类型的新模板中。这不是火箭科学,但有很多步骤,所以请阅读他们的说明。 http://www.advancedcustomfields.com/add-ons/repeater-field/