我正在尝试使用ACF添加文件以便能够下载。我使用以下代码:
<?php if( get_field('jesmond_breakfast') ):?>
<a href="<?php the_field('jesmond_breakfast'); ?>" target="_blank"><strong>Brochure</strong></a>
<?php
endif;?>
然后我在ACF中设置了这个。
但由于某种原因,我没有运气。
有人能看到这个问题吗?
答案 0 :(得分:0)
<?php if( get_field('jesmond_breakfast') ):?>
<a href="<?php the_field('jesmond_breakfast'); ?>" target="_blank"><strong>Brochure</strong></a>
<?php
endif;?>
而不是你可以在
中给出后存储在变量中<?php if( get_field('jesmond_breakfast') ):
$link= the_field('jesmond_breakfast');?>
<a href="<?php echo $link; ?>" target="_blank"><strong>Brochure</strong></a>
<?php
endif;?>