WordPress ACF Repeater子字段

时间:2018-10-25 12:47:06

标签: php wordpress repeater advanced-custom-fields

我在Wordpress中遇到一个问题,其中ACF转发器子字段链接对象未在前端返回href。基本上,前端中的链接不会输出在WP admin中设置的任何链接。文本输出正常。

中继器字段:

Field label = Link to doc
Field name = link_to_doc
Field type = Repeater

中继器子字段1:

Field label = Link
Field name = link
Field type = Link

中继器子字段2:

Field label = Text of link
Field name = text_of_link
Field type = Text

PHP代码:

<?php if ($section['link_to_doc']) : ?>
    <?php foreach ($section['link_to_doc'] as $link) : ?>
       <div>
       <a href="<?= $link['link'] ?>" class="btn-txt">
       <?= $link['text_of_link'] ?>
      </a>
        </div>
     <?php endforeach; ?>
<?php endif; ?>

有人可以检查php代码并让我知道怎么了吗?

0 个答案:

没有答案