-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
93 lines (61 loc) · 2.88 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
?>
<!-- / footer container \ -->
<footer id="footerCntr">
<div class="mycontainer">
<!-- / footer top \ -->
<div class="footerTop">
<a class="logo" href="<?php bloginfo('url'); ?>"><img src="<?php the_field('footer_logo', 'option'); ?>" alt="alt" /></a>
<div class="stay">
<?php dynamic_sidebar('newsletter'); ?>
<!--h2>stay up to date</h2>
<form action="#">
<input type="email" name="email" placeholder="Enter Your Email Address" class="style" required />
<input type="submit" name="submit" value="Submit" class="mybtn" />
</form-->
</div>
</div>
<!-- \ footer top / -->
<!-- / footer bottom \ -->
<div class="footerBottom">
<div class="row">
<aside class="contact col-xs-12 col-sm-6 col-md-3 col-lg-3">
<?php echo do_shortcode('[contact-form-7 id="15" title="Contact form"]'); ?>
</aside>
<aside class="link col-xs-12 col-sm-6 col-md-3 col-lg-3">
<h3>quick Links</h3>
<?php wp_nav_menu('menu=mainmenu'); ?>
</aside>
<aside class="link col-xs-12 col-sm-6 col-md-3 col-lg-3">
<h3>Follow us</h3>
<ul>
<li><a target="_blank" href="<?php the_field('facebook_link', 'option'); ?>"><i class="fa fa-facebook"></i> Facebook</a></li>
<li><a target="_blank" href="<?php the_field('twitter_link', 'option'); ?>"><i class="fa fa-twitter"></i> Twitter</a></li>
<li><a target="_blank" href="<?php the_field('instagram_link', 'option'); ?>"><i class="fa fa-instagram"></i> Instagram</a></li>
</ul>
</aside>
<aside class="link col-xs-12 col-sm-6 col-md-3 col-lg-3">
<h3>quick Links</h3>
<ul>
<?php if( get_field('phone_number_1', 'option') ): ?><li><a href="<?php the_field('phone_number_1', 'option'); ?>"><i class="fa fa-phone"></i> <?php the_field('phone_number_1', 'option'); ?></a></li><?php endif; ?>
<?php if( get_field('phone_number_2', 'option') ): ?><li><a href="<?php the_field('phone_number_2', 'option'); ?>"><i class="fa fa-phone"></i> <?php the_field('phone_number_2', 'option'); ?></a></li><?php endif; ?>
<?php if( get_field('address', 'option') ): ?><li><a target="_blank" href="<?php the_field('address_link', 'option'); ?>"><i class="fa fa-map-marker"></i> <?php the_field('address', 'option'); ?></li><?php endif; ?>
<li><a href="mailto:<?php the_field('email_address', 'option'); ?>"><i class="fa fa-envelope"></i> <u>Email Us</u></a></li>
</ul>
<p class="copyr"><?php the_field('copyright', 'option'); ?></p>
</aside>
</div>
</div>
<!-- \ footer bottom / -->
</div>
</footer>
<!-- \ footer container / -->
</div>
<!-- \ wrapper / -->
<?php wp_footer(); ?>
</body>
</html>