-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
44 lines (33 loc) · 840 Bytes
/
footer.php
File metadata and controls
44 lines (33 loc) · 840 Bytes
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 footer and the closing of the .page div
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WordPress
* @subpackage quick-start
* @since 1.0.0
* @version 1.0.0
*/
/**
* File Security Check.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
</div><!-- .site-content -->
<footer id="js-siteFooter" class="site-footer" role="contentinfo">
<div class="site-footer__inner">
<?php get_template_part( 'template-parts/footer/site-info' ); ?>
<?php if ( has_nav_menu( 'secondary' ) ) :
get_template_part( 'template-parts/navigation/secondary-navigation' );
endif; ?>
</div><!-- .site-footer__inner -->
</footer><!-- .site-footer -->
</div><!-- .site -->
<?php wp_footer(); ?>
</body>
</html>