-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
91 lines (67 loc) · 2.15 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package newspro
*/
?>
</div><!-- #content -->
</div>
<div class="footer-site">
<div class="container">
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-footer col-sm-12">
<div class="col-sm-4">
<?php dynamic_sidebar('newspro-footer-1'); ?>
</div><!-- col-main -->
<div class="col-sm-4">
<?php dynamic_sidebar('newspro-footer-2'); ?>
</div><!-- col-main -->
<div class="col-sm-4">
<?php dynamic_sidebar('newspro-footer-3'); ?>
</div><!-- col-main -->
<div class="clearfix"></div>
</div>
<div class="col-sm-5">
<div class="logo">
<?php
$logo = esc_url(get_theme_mod("logo-upload"));
?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">
<?php echo (strlen($logo) > 0)? '<img src="'.$logo.'" alt="" />' : get_bloginfo('name'); ?>
</a>
</div>
</div>
<div class="col-sm-7 footer-tops">
<div class="footer-top">
<nav class="top_nav">
<?php
$arg = array(
'theme_location' => 'footer',
'container_class' => 'menu-footer',
'container_id' => '',
'menu_class' => '',
'menu_id' => 'footer-menu',
'fallback_cb' => false
);
wp_nav_menu( $arg );
?>
</nav>
</div>
<div class="clearfix"></div>
<div class="footer-bottom">
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'newspro' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'newspro' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<a href="<?php echo esc_url( __( 'https://www.sanyog.in/', 'newspro' ) ); ?>"><?php printf( esc_html__( 'Designed with love by: %1$s.', 'newspro' ), 'Sanyog Shelar' ); ?></a>
</div>
</div><!-- #page -->
</footer><!-- #colophon -->
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>