-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
87 lines (78 loc) · 3.12 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "site-content" div and all content after.
*
* @package Wiser Sites
* @since Wiser Sites 1.0
*/
?>
<?php
global $theme_url, $wiser_option;
$footer_logo = $wiser_option['footer_logo'];
?>
</div><!-- .site-content -->
<div id="footer" class="header container-fluid">
<footer id="footer_inner" class="footer_inner container" role="footerinfo">
<div class="row">
<div class="left_footer col-md-3">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="logo" rel="home">
<img src="<?php echo $footer_logo; ?>" alt="logo">
</a>
</div>
<div class="middle_footer footer_menu_div col-md-2 col-sm-4">
<h4>Services </h4>
<?php
wp_nav_menu( array(
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'menu_id' => 'footer_menu_ul',
'menu_class' => 'footer_menu',
'container' => 'none',
'theme_location' => 'foot_menu'
) ); ?>
</div>
<div class="middle_footer footer_menu_div col-md-2 col-sm-4">
<h4>About </h4>
<?php
wp_nav_menu( array(
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'menu_id' => 'footer_menu_ul',
'menu_class' => 'footer_menu',
'container' => 'none',
'theme_location' => 'foot_menu_2'
) ); ?>
</div>
<div class="middle_footer footer_menu_div col-md-2 col-sm-4">
<h4>About </h4>
<?php
wp_nav_menu( array(
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'menu_id' => 'footer_menu_ul',
'menu_class' => 'footer_menu',
'container' => 'none',
'theme_location' => 'foot_menu_3'
) ); ?>
</div>
<div class="right_footer col-md-3">
<h4><?php _e( $wiser_option['social_title'] ); ?></h4>
<?php echo do_shortcode( '[wiser_social_links]' ); ?>
<?php /*<ul class="social_ul clearfix">
<li>
<a href="#" title="" target="_blank"> <img src="<?php echo $theme_url; ?>images/socials/google_plus.png" alt=""></a>
</li>
<li>
<a href="#" title="" target="_blank"> <img src="<?php echo $theme_url; ?>images/socials/twitter.png" alt=""></a>
</li>
<li>
<a href="#" title="" target="_blank"> <img src="<?php echo $theme_url; ?>images/socials/facebook.png" alt=""></a>
</li>
</ul>*/ ?>
</div>
</div><!-- .row -->
</footer><!-- .footer_inner -->
</div>
</div><!-- .site -->
<?php wp_footer(); ?>
</body>
</html>