循环遍历wordpress中的ACF转发器行并分别显示每一行

时间:2017-03-22 11:05:34

标签: php wordpress repeater advanced-custom-fields

我有一个名为sub_seminars的ACF转发器字段。 在某些帖子中,转发器有多行。 我想循环遍历行并根据子字段分别显示每个帖子" start_date"

我正在做这样的事情

<service
    android:name=".service.offline.SyncOfflineCoursesService"
    android:exported="false" />

<service
    android:name=".service.offline.SyncOfflineContentService"
    android:exported="true"
    android:permission="com.google.android.gms.permission.BIND_NETWORK_TASK_SERVICE">

    <intent-filter>
        <action android:name="com.google.android.gms.gcm.ACTION_TASK_READY" />
    </intent-filter>
</service>

但它适用于第一个帖子,即count == 1,当你增加计数时失败

2 个答案:

答案 0 :(得分:0)

更改

if ($count == 1) {

if ($count > 1) {

如果您在第一次迭代时,看起来只运行循环来检索字段。

答案 1 :(得分:0)

{{1}}

这是可行的。