forked from gramophone-wp/Gramophone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
84 lines (78 loc) · 2.29 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
<?php
/**
*******************************************************************************
* //footer.php
*******************************************************************************
*
* The general footer.
*
* CODEX REF
* https://codex.wordpress.org/Theme_Development#Footer_.28footer.php
*
* @author
* @copyright
* @link
* @todo
* @license
* @since
* @version
**/
?>
<section class="widgets">
<div class="container">
<div class="row">
<div class="col-12 col-sm-4">
<?php if ( !dynamic_sidebar( 'footer_left' ) ): ?>
<h4 class="text-center">Sidebar (Page)</h4>
<p>Oh! No Sidebar?</p>
<?php endif; ?>
</div>
<div class="col-12 col-sm-4">
<?php if ( !dynamic_sidebar( 'footer_center' ) ): ?>
<h4 class="text-center">Sidebar (Page)</h4>
<p>Oh! No Sidebar?</p>
<?php endif; ?>
</div>
<div class="col-12 col-sm-4">
<?php if ( !dynamic_sidebar( 'footer_right' ) ): ?>
<h4 class="text-center">Sidebar (Page)</h4>
<p>Oh! No Sidebar?</p>
<?php endif; ?>
</div>
</div>
</div>
</section>
<?php
$nav_check = wp_nav_menu( array('echo' => FALSE, 'fallback_cb' => '') );
if (!empty($nav_check)) {
?>
<section class="footer-menu">
<?php
wp_nav_menu( array(
'menu' => 'footer',
'theme_location' => 'footer',
'depth' => 1,
'container' => "ul",
'menu_class' => "nav justify-content-center",
'fallback_cb' => 'bootstrap_walker::fallback',
'walker' => new Bootstrap_Walker()
) );
?>
</section>
<?php } ?>
<footer class="footer" role="contentinfo" itemscope itemtype="http://schema.org/WPFooter">
<div class="container">
<div vlass="row">
<div class="col-12 text-center" id="copyright">
<p class="text-muted">©
<a href="<?php echo esc_url( home_url() ); ?>">
<?php bloginfo('name'); ?></a>
<?php echo date('Y'); ?>. All Rights Reserved
</p>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>