-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
28 lines (23 loc) · 970 Bytes
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<div class="footer">
<p class="copyright"><?php bloginfo( 'name' ); ?> ©</p>
<div class="socialmedia">
<!-- <a href="<?php // echo get_page_link( get_page_by_title( 'blog' )->ID ); ?>" class="socialMeds">blog |</a> -->
<?php
$social_pint = get_theme_mod( 'pinterest_link_setting' );
$social_fb = get_theme_mod( 'facebook_link_setting' );
$social_houz = get_theme_mod( 'houzz_link_setting' );
?>
<?php if (strlen($social_pint) > 0 ): ?>
<a href="<?php echo $social_pint ?>" class="socialMeds" target="_blank"> Pinterest |</a>
<?php endif; ?>
<?php if (strlen($social_fb) > 0): ?>
<a href="<?php echo $social_fb ?>" class="socialMeds" target="_blank"> Facebook |</a>
<?php endif; ?>
<?php if (strlen($social_houz) > 0): ?>
<a href="<?php echo $social_houz ?>" class="socialMeds" target="_blank"> Houzz </a>
<?php endif; ?>
</div>
</div>
</body>
<?php wp_footer(); ?>
</html>