-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
46 lines (42 loc) · 1.1 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
<!-- Footer Wrapper -->
<div id="footer-wrapper">
<footer id="footer" class="container">
<div class="row">
<div class="col-3 col-6-medium col-12-small">
<?php
if ( is_active_sidebar( 'zerofour-footer-sidebar-1' ) ) {
dynamic_sidebar( 'zerofour-footer-sidebar-1' );
}
?>
</div>
<div class="col-3 col-6-medium col-12-small">
<?php
if ( is_active_sidebar( 'zerofour-footer-sidebar-2' ) ) {
dynamic_sidebar( 'zerofour-footer-sidebar-2' );
}
?>
</div>
<div class="col-6 col-6-medium col-12-small">
<?php
if ( is_active_sidebar( 'zerofour-footer-sidebar-3' ) ) {
dynamic_sidebar( 'zerofour-footer-sidebar-3' );
}
?>
</div>
</div>
<div class="col-12">
<div id="copyright">
<?php
if ( is_active_sidebar( 'zerofour-footer-text' ) ) {
dynamic_sidebar( 'zerofour-footer-text' );
}
?>
</div>
</div>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>