另一种解决方案是放置自定义元字段,例如高级自定义字段、创建文本或链接字段,然后您可以在模板、循环或单条中输出读取更多链接,如下所示:
<?php if (get_field(\'custom_link\')): ?>
<a href="<?php the_field(\'custom_link\'); ?>" target="_blank">Read more</a>
<?php else: ?>
<a href="<?php the_permalink(); ?>">Read more</a>
<?php endif; ?>