-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
54 lines (43 loc) · 1.52 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "off-canvas-wrap" div and all content after.
*
* @package EBI Visual Framework
* @since EBI Visual Framework 1.0.0
*/
?>
</section>
</div>
<div id="footer-container">
<!-- Optional local footer (insert citation / project-specific copyright / etc here -->
<footer id="local-footer" class="local-footer" role="local-footer">
<div class="row">
<?php do_action( 'ebiframework_before_footer' ); ?>
<?php dynamic_sidebar( 'footer-widgets' ); ?>
<?php do_action( 'ebiframework_after_footer' ); ?>
</div>
</footer>
<!-- End optional local footer -->
<footer id="footer">
<div id="global-footer" class="global-footer">
<nav id="global-nav-expanded" class="global-nav-expanded row">
<!-- Footer will be automatically inserted by footer.js -->
</nav>
<section id="ebi-footer-meta" class="ebi-footer-meta row">
<!-- Footer meta will be automatically inserted by footer.js -->
</section>
</div>
</footer>
</div>
<?php do_action( 'ebiframework_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( 'ebiframework_before_closing_body' ); ?>
</body>
</html>