-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
39 lines (33 loc) · 1.02 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "off-canvas-wrap" div and all content after.
*
* @category TacticalWP-Theme
* @package TacticalWP
* @author Tyler Kemme <[email protected]>
* @license MIT https://opensource.org/licenses/MIT
* @version 1.0.4
* @link https://github.com/tpkemme/tacticalwp-theme
* @since 1.0.0
*/
?>
</section>
<div id="footer-container">
<footer id="footer">
<?php do_action('twp_before_footer'); ?>
<?php dynamic_sidebar('footer-widgets'); ?>
<?php do_action('twp_after_footer'); ?>
</footer>
</div>
<?php do_action('twp_layout_end'); ?>
<?php if (get_theme_mod('wpt_mobile_menu_layout') === 'offcanvas' ) : ?>
</div><!-- Close off-canvas wrapper inner -->
</div><!-- Close off-canvas wrapper -->
</div><!-- Close off-canvas content wrapper -->
<?php endif; ?>
<?php wp_footer(); ?>
<?php do_action('twp_before_closing_body'); ?>
</body>
</html>