-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
80 lines (41 loc) · 1.73 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
73
74
75
76
77
78
79
80
<div class="footer section large-padding bg-dark">
<div class="footer-inner section-inner">
<?php if ( is_active_sidebar( 'footer-a' ) ) : ?>
<div class="column column-1 left">
<div class="widgets">
<?php dynamic_sidebar( 'footer-a' ); ?>
</div>
</div>
<?php endif; ?> <!-- /footer-a -->
<?php if ( is_active_sidebar( 'footer-b' ) ) : ?>
<div class="column column-2 left">
<div class="widgets">
<?php dynamic_sidebar( 'footer-b' ); ?>
</div> <!-- /widgets -->
</div>
<?php endif; ?> <!-- /footer-b -->
<?php if ( is_active_sidebar( 'footer-c' ) ) : ?>
<div class="column column-3 left">
<div class="widgets">
<?php dynamic_sidebar( 'footer-c' ); ?>
</div> <!-- /widgets -->
</div>
<?php endif; ?> <!-- /footer-c -->
<div class="clear"></div>
</div> <!-- /footer-inner -->
</div> <!-- /footer -->
<div class="credits section bg-dark no-padding">
<div class="credits-inner section-inner">
<p class="credits-left">
© <?php echo date("Y") ?> <a href="<?php echo home_url(); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>
</p>
<p class="credits-right">
<span><?php printf( __( 'Theme by <a href="%s">Anders Noren</a>', 'hemingway'), 'http://www.andersnoren.se' ); ?></span> — <a title="<?php _e('To the top', 'hemingway'); ?>" class="tothetop"><?php _e('Up', 'hemingway' ); ?> ↑</a>
</p>
<div class="clear"></div>
</div> <!-- /credits-inner -->
</div> <!-- /credits -->
</div> <!-- /big-wrapper -->
<?php wp_footer(); ?>
</body>
</html>