-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
43 lines (38 loc) · 1.02 KB
/
footer.php
File metadata and controls
43 lines (38 loc) · 1.02 KB
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
<?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 Wapuula
*/
?>
</div><!-- #content -->
<div class="footer-area-wrap invert">
<?php do_action( 'wapu_render_widget_area', 'footer' ); ?>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="container">
<div class="footer-conatiner__flex">
<?php wapu_footer_logo(); ?>
<div class="site-info">
<?php printf( __( 'Copyright © %s. All Rights Reserved', 'wapu' ), date( 'Y' ) ); ?>
</div><!-- .site-info -->
<?php if ( has_nav_menu( 'footer' ) ) : ?>
<?php
wapu_nav_menu(
'footer',
'<nav id="footer-navigation" class="footer-navigation" role="navigation">%s</nav>',
true
);
?>
<?php endif; ?>
</div>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>