-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
22 lines (22 loc) · 778 Bytes
/
footer.php
File metadata and controls
22 lines (22 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<footer class="footer" role="contentinfo">
<div class="social">
<?php if ($link = get_theme_mod('facebook_link')){ ?>
<a href="<?php echo $link; ?>" target="_blank">Facebook</a>
<?php } ?>
<?php if ($link = get_theme_mod('instagram_link')){ ?>
<a href="<?php echo $link; ?>" target="_blank">Instagram</a>
<?php } ?>
<?php if ($link = get_theme_mod('pinterest_link')){ ?>
<a href="<?php echo $link; ?>" target="_blank">Pinterest</a>
<?php } ?>
<?php if ($link = get_theme_mod('tumblr_link')){ ?>
<a href="<?php echo $link; ?>" target="_blank">Tumblr</a>
<?php } ?>
<?php if ($link = get_theme_mod('twitter_link')){ ?>
<a href="<?php echo $link; ?>" target="_blank">Twitter</a>
<?php } ?>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>