-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
38 lines (29 loc) · 960 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
36
37
38
<footer>
<div class="container">
<?php do_action( 'playjo_before_footer' ); ?>
<aside class="footer first">
<?php if ( is_active_sidebar( 'footer-first-widget-area' ) ) : ?>
<?php dynamic_sidebar( 'footer-first-widget-area' ); ?>
<?php endif; ?>
</aside>
<aside class="footer second">
<?php if ( is_active_sidebar( 'footer-second-widget-area' ) ) : ?>
<?php dynamic_sidebar( 'footer-second-widget-area' ); ?>
<?php endif; ?>
</aside>
<aside class="footer third">
<?php if ( is_active_sidebar( 'footer-third-widget-area' ) ) : ?>
<?php dynamic_sidebar( 'footer-third-widget-area' ); ?>
<?php endif; ?>
</aside>
<aside class="footer fourth">
<?php if ( is_active_sidebar( 'footer-fourth-widget-area' ) ) : ?>
<?php dynamic_sidebar( 'footer-fourth-widget-area' ); ?>
<?php endif; ?>
</aside>
<?php do_action( 'playjo_after_footer' ); ?>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>