-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
45 lines (33 loc) · 990 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
39
40
41
42
43
44
45
<?php
/**
*
* @package gold-parent_s
*/
?>
</div><!-- #content -->
</div><!-- #page -->
<div id="footer">
<div class="footer-content">
<?php if ( is_active_sidebar( 'footer-widgets-1' ) ) : ?>
<div id="footer-widgets">
<?php dynamic_sidebar( 'footer-widgets-1' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-widgets-2' ) ) : ?>
<div id="footer-widgets">
<?php dynamic_sidebar( 'footer-widgets-2' ); ?>
</div>
<?php endif; ?>
<?php if ( is_active_sidebar( 'footer-widgets-3' ) ) : ?>
<div id="footer-widgets">
<?php dynamic_sidebar( 'footer-widgets-3' ); ?>
</div>
<?php endif; ?>
</div><!-- .footer-content -->
</div><!-- #footer -->
<?php if ( shortcode_exists( 'tf_powered_link' ) ) {
echo do_shortcode('[tf_powered_link]');
} ?>
<?php wp_footer(); ?>
</body>
</html>