-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
42 lines (30 loc) · 979 Bytes
/
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
<footer id="colophon" role="contentinfo">
<div class="row">
<div class="eight columns">
<?php if ( is_active_sidebar( 'footer-widget-area' ) ) : ?>
<div id="first" class="widget-area">
<ul class="xoxo">
<?php dynamic_sidebar( 'footer-widget-area' ); ?>
</ul>
</div><!-- #first .widget-area -->
<?php endif; ?>
<div id="site-generator">
<a href="<?php echo esc_url( __( 'http://wordpress.org/' ) ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s' ), 'WordPress' ); ?></a>
</div>
</div>
<div class="four columns">
<?php if ( is_active_sidebar( 'secondary-footer-widget-area' ) ) : ?>
<div id="first" class="widget-area">
<ul class="xoxo">
<?php dynamic_sidebar( 'secondary-footer-widget-area' ); ?>
</ul>
</div><!-- #first .widget-area -->
<?php endif; ?>
</div>
</div>
</footer><!-- #colophon -->
</div>
<!-- .container -->
<?php wp_footer(); ?>
</body>
</html>