-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·66 lines (65 loc) · 1.29 KB
/
Copy pathfooter.php
File metadata and controls
executable file
·66 lines (65 loc) · 1.29 KB
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
<?php
/**
* The template for displaying the footer
*
* @package same
*/
?>
</div>
</div>
<div id="page_bottom">
<section id="above_footer">
<div class="wrapper above_footer_boxes page_text">
<div class="box first">
<?php
if ( is_active_sidebar( 'same-footer-col-1' ) ) {
dynamic_sidebar( 'same-footer-col-1' );
}
?>
</div>
<div class="box second">
<?php
if ( is_active_sidebar( 'same-footer-col-2' ) ) {
dynamic_sidebar( 'same-footer-col-2' );
}
?>
</div>
<div class="box third">
<?php
if ( is_active_sidebar( 'same-footer-col-3' ) ) {
dynamic_sidebar( 'same-footer-col-3' );
}
?>
</div>
<div class="box fourth">
<h3>Contact Us</h3>
<ul class="list_contact page_text">
<?php
if ( is_active_sidebar( 'same-footer-col-4' ) ) {
dynamic_sidebar( 'same-footer-col-4' );
}
?>
</ul>
</div>
</div>
</section>
<footer id="footer">
<div class="wrapper">
<p class="copyrights">
<?php
if ( is_active_sidebar( 'same-footer-after-col' ) ) {
dynamic_sidebar( 'same-footer-after-col' );
}
?>
</p>
<a href="#page" class="up">
<span class="arrow"></span>
<span class="text">top</span>
</a>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>