-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
72 lines (41 loc) · 1.43 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
<?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 vigor
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="footer-widgets">
<div class="widget-area footer-logo">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><img alt="<?php bloginfo( 'name' ); ?>" src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/logo.png" /></a>
</div><!-- .widget-area -->
<?php if ( is_active_sidebar( 'footer-1' ) ) : ?>
<div class="widget-area">
<?php dynamic_sidebar( 'footer-1' ); ?>
</div><!-- .widget-area -->
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-2' ) ) : ?>
<div class="widget-area">
<?php dynamic_sidebar( 'footer-2' ); ?>
</div><!-- .widget-area -->
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-3' ) ) : ?>
<div class="widget-area">
<?php dynamic_sidebar( 'footer-3' ); ?>
</div><!-- .widget-area -->
<?php endif; ?>
</div><!-- .footer-widgets -->
<div class="site-info">
<?php echo esc_html( date( 'Y' ) ); ?> Your Company. All rights reserved.
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>