-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
53 lines (38 loc) · 1.33 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
<footer class="site-footer">
<!-- footer-widgets -->
<div class="footer-widgets">
<?php if ( is_active_sidebar('footer1')) : ?>
<div class="footer-widget-area">
<?php dynamic_sidebar('footer1'); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar('footer2')) : ?>
<div class="footer-widget-area">
<?php dynamic_sidebar('footer2'); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar('footer3')) : ?>
<div class="footer-widget-area">
<?php dynamic_sidebar('footer3'); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar('footer4')) : ?>
<div class="footer-widget-area">
<?php dynamic_sidebar('footer4'); ?>
</div>
<?php endif; ?>
</div><!-- /footer-widgets -->
<nav class="site-nav">
<?php
$args = array(
'theme_location' => 'footer'
);
?>
<?php wp_nav_menu( $args ); ?>
</nav>
<p><?php bloginfo('name'); ?> - © <?php echo date('Y');?></p>
</footer>
</div><!-- container -->
<?php wp_footer(); ?>
</body>
</html>