php - ACF file download not working, added screenshots -
i trying use acf add files able download. , using following code:
<?php if( get_field('jesmond_breakfast') ):?> <a href="<?php the_field('jesmond_breakfast'); ?>" target="_blank"><strong>brochure</strong></a> <?php endif;?>
then have set in acf.
but reason, having no luck.
can see issue?
<?php if( get_field('jesmond_breakfast') ):?> <a href="<?php the_field('jesmond_breakfast'); ?>" target="_blank"><strong>brochure</strong></a> <?php endif;?>
instead of can store in variable after given in
<?php if( get_field('jesmond_breakfast') ): $link= the_field('jesmond_breakfast');?> <a href="<?php echo $link; ?>" target="_blank"><strong>brochure</strong></a> <?php endif;?>
Comments
Post a Comment