-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
30 lines (24 loc) · 832 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
<div class="container">
<!-- row of columns -->
<div class="row">
<div class="col-md-4">
<div id="sidebar" role="complementary"><?php dynamic_sidebar( 'first-footer' ); ?></div>
</div>
<div class="col-md-4">
<div id="sidebar" role="complementary"><?php dynamic_sidebar( 'second-footer' ); ?></div>
</div>
<div class="col-md-4">
<div id="sidebar" role="complementary"><?php dynamic_sidebar( 'third-footer' ); ?></div>
</div>
</div>
</div>
<hr>
<footer>
<p>©<?php echo date('Y'); ?> <?php bloginfo('name'); ?><br><i><?php bloginfo( 'description' ); ?></i></p>
<p><span class="pull-right"></span></p>
</footer>
</div>
<hr>
<?php wp_footer(); ?>
</body>
</html>