-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter.php
44 lines (34 loc) · 1.05 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Noah Lite
* @since Noah Lite 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<footer class="c-footer u-container-sides-spacings u-content_container_margin_top u-content-background">
<div class="o-wrapper u-container-width content-area">
<?php get_template_part( 'template-parts/footer/footer-widgets' ); ?>
<div class="c-footer__content">
<?php get_template_part( 'template-parts/footer/site-info' ); ?>
</div><!-- .c-footer__content -->
</div><!-- .o-wrapper.u-container-width.content-area -->
</footer>
</div><!-- #content -->
</div><!-- #page -->
<div class="c-mask js-page-mask"></div>
<div class="c-border"></div>
<?php
/**
* This function is required since here the admin-bar is loaded and a lot of plugins load their assets through this function
*/
wp_footer(); ?>
</body>
</html>