Hi
I am trying to change the URL on two image links (facebook and instragram) which are displayed on several pages on the website as you can see here – http://juliaborgart.com/
In every page there’s this code in a php file which relates to this:
while (have_posts() ) : the_post(); ?>
<div class=”col-md-4 col-sm-4″>
<div class=”social”>
“>
/img/inst.png” alt=””>
“>
/img/fac.png” alt=””>
</div>
</div>
In the Dashboard – Custom Fields section, these two fields are set in a group. Neither field has a value set with a URL.
Where can I find this URL so that I can change it please?
Appreciate any help. Thank you!
re-pasting code – sorry about that!
while (have_posts() ) : the_post(); ?>
<div class="col-md-4 col-sm-4">
<div class="social">
<a href="<?php the_field('inst');?>"><img src="<?php bloginfo('template_directory') ?>/img/inst.png" alt=""></a>
<a href="<?php the_field('fb');?>"><img src="<?php bloginfo('template_directory') ?>/img/fac.png" alt=""></a>
</div>
</div>