Wordpress高级自定义字段外部链接文本在一个帖子的多个外部链接


Wordpress advanced custom fields external link text for multiple external links in one post

我在一个网站上使用ACF插件。假设在一篇文章中,我想添加多个外部链接,我希望每个链接都有一个可配置的显示文本,而不是永久链接。使用ACF为单个外部链接做到这一点并不难,但我不知道如何为同一帖子上的多个外部链接做到这一点。

您应该查看ACF中继器http://www.advancedcustomfields.com/resources/repeater/

它意味着做你所描述的。Repeater字段充当一个数据表,您可以在其中定义列(子字段)并添加无限行。

<?php

//检查中继器字段是否有数据行If (have_rows('repeater_field_name')):

// loop through the rows of data
while ( have_rows('repeater_field_name') ) : the_row();
    // display a sub field value
    the_sub_field('sub_field_name');
endwhile;

:

// no rows found

endif;

?>