-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
40 lines (39 loc) · 1.91 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
<section id="footer" class="section-padding regular-section">
<div class="footer-block container">
<?php $pe = get_option('ag_pe'); ?>
<div class="col-xs-3 footer-item">
<p><span class="footer-item-name">Phone</span> <span><?php echo esc_attr($pe['ag_phone_id']); ?></span></p>
</div>
<div class="col-xs-3 footer-item">
<p><span class="footer-item-name">E-mail</span> <span><?php echo esc_attr($pe['ag_email_id']); ?></span></p>
</div>
<div class="col-xs-3 footer-item">
<?php $social = get_option('ag_social_networks'); ?>
<ul class="soc-net">
<li>
<a href="<?php echo esc_attr($social['ag_facebook_id']); ?>">
<img src="<?php bloginfo('template_url') ?>/img/facebook.jpg" alt="" />
</a>
</li>
<li>
<a href="<?php echo esc_attr($social['ag_instagram_id']); ?>">
<img src="<?php bloginfo('template_url') ?>/img/inst.jpg" alt="" />
</a>
</li>
<li>
<a href="<?php echo esc_attr($social['ag_twitter_id']); ?>">
<img src="<?php bloginfo('template_url') ?>/img/tiwtter.jpg" alt="" />
</a>
</li>
</ul>
</div>
<div class="col-xs-3 footer-item">
<a href="">
<img src="<?php bloginfo('template_url') ?>/img/fpro.png" alt="" />
</a>
</div>
</div>
</section>
<?php wp_footer(); ?>
</body>
</html>