ACF文件下载不起作用,添加了截图

时间:2015-08-05 10:33:37

标签: php wordpress wordpress-plugin advanced-custom-fields

我正在尝试使用ACF添加文件以便能够下载。我使用以下代码:

<?php if( get_field('jesmond_breakfast') ):?>
  <a href="<?php the_field('jesmond_breakfast'); ?>" target="_blank"><strong>Brochure</strong></a>
<?php
endif;?>

然后我在ACF中设置了这个。

enter image description here enter image description here

但由于某种原因,我没有运气。

有人能看到这个问题吗?

1 个答案:

答案 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;?>