-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
55 lines (42 loc) · 1.25 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
<?php
/**
* The template for displaying footers.
*
* Learn more: https://codex.wordpress.org/Template_Hierarchy
*
* @package Forest
*/
?>
</main>
<?php stag_footer_before(); ?>
<?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="inside">
<?php stag_footer_start(); ?>
<div class="grids">
<?php dynamic_sidebar( 'sidebar-footer' ); ?>
</div>
<?php stag_footer_end(); ?>
</div>
</footer><!-- .site-footer -->
<?php endif; ?>
<footer class="secondary-footer">
<div class="inside">
<div class="grids">
<div class="site-info grid-6">
<?php echo wpautop( stripslashes( forest_get_thememod_value( 'forest_site_footer' ) ) ); ?>
<?php if ( true !== forest_get_thememod_value( 'forest_theme_credit' ) ) : ?>
<p>Forest theme <em>by</em> <a href="https://codestag.com">Codestag</a></p>
<?php endif; ?>
</div><!-- .site-info -->
<div class="grid-6">
<?php echo do_shortcode( stripcslashes( forest_get_thememod_value( 'forest_footer_social_links' ) ) ); ?>
</div>
</div>
</div>
</footer><!-- /.secondary-footer -->
<?php stag_footer_after(); ?>
<?php stag_body_end(); ?>
<?php wp_footer(); ?>
</body>
</html>