forked from pippinsplugins/EDD-Starter-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
35 lines (26 loc) · 1022 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
<div class="container" id="footer">
<div class="row" id="footer-widgets">
<div class="threecol">
<?php if(is_active_sidebar('footer_one')) { dynamic_sidebar('footer_one'); } ?>
</div><!--end .threecol-->
<div class="threecol">
<?php if(is_active_sidebar('footer_two')) { dynamic_sidebar('footer_two'); } ?>
</div><!--end .threecol-->
<div class="threecol">
<?php if(is_active_sidebar('footer_three')) { dynamic_sidebar('footer_three'); } ?>
</div><!--end .threecol-->
<div class="threecol last">
<?php if(is_active_sidebar('footer_four')) { dynamic_sidebar('footer_four'); } ?>
</div><!--end .threecol-->
</div><!--end .row#footer-widgets-->
</div><!--end .container#footer-->
<div class="container" id="copyright">
<div class="row">
<div id="footer-nav" class="twelvecol last">
<p>© <?php echo date('Y') . ' ' . get_bloginfo('name'); ?></p>
</div>
</div><!--end .row-->
</div><!--end .container#copyright-->
<div><?php wp_footer(); ?></div>
</body>
</html>