-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
62 lines (48 loc) · 1.44 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
<?php
/**
* @package WordPress
* @subpackage Adapt Theme
*/
$options = get_option( 'adapt_theme_settings' );
?>
</div>
<!-- /main -->
<div id="footer" class="clearfix">
<div id="footer-widget-wrap" class="clearfix">
<div id="footer-one">
<?php dynamic_sidebar('footer-one'); ?>
</div>
<!-- /footer-one -->
<div id="footer-two">
<?php dynamic_sidebar('footer-two'); ?>
</div>
<!-- /footer-two -->
<div id="footer-three">
<?php dynamic_sidebar('footer-three'); ?>
</div>
<!-- /footer-three -->
<div id="footer-four">
<?php dynamic_sidebar('footer-four'); ?>
</div>
<!-- /footer-four -->
</div>
<!-- /footer-widget-wrap -->
<div id="footer-bottom" class="clearfix">
<div id="copyright">
© <?php echo date('Y'); ?> Powered by WordPress & BBPress
</div>
<!-- /copyright -->
<div id="back-to-top">
<a href="#toplink"><?php _e('back up', ''); ?> ↑</a>
</div>
<!-- /back-to-top -->
</div>
<!-- /footer-bottom -->
</div>
<!-- /footer -->
</div>
<!-- wrap -->
<!-- WP Footer -->
<?php wp_footer(); ?>
</body>
</html>