-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfooter.php
More file actions
67 lines (46 loc) · 1.66 KB
/
footer.php
File metadata and controls
67 lines (46 loc) · 1.66 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
* The template for displaying the footer
*
* @package Intro
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
* @since 1.0
*/
?>
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
<section class="footer-wrapper">
<div class="wrapper">
<div class="footer-bar">
<?php dynamic_sidebar('footer'); ?>
</div><!-- END .footerbar -->
</div><!-- END .wrapper -->
<footer class="site-footer" role="contentinfo" itemscope="itemscope" itemtype="http://schema.org/WPFooter">
<div class="wrapper">
<div class="footnote col-1-2">
<?php
if(get_option("intro_footer_left")):
echo strip_tags(get_option("intro_footer_left"), '<strong><a><em><img>');
else:
printf(__('<strong>%s</strong> - Intro by <a href="https://www.themesdefrance.fr/" target="_blank">Themes de France</a>', 'intro'),date('Y'));
endif;
?>
</div><!-- END .footnote .col-1-2 -->
<div class="menu col-1-2">
<?php
wp_nav_menu(array(
'theme_location' => 'footer',
'menu_class' => 'top-level-menu',
'container' => false,
'depth' => 1,
'fallback_cb' => ''
));
?>
</div><!-- END .menu .col-1-2 -->
</div><!-- END .wrapper -->
</footer>
<button id="back-to-top" title="<?php _e('Back to the top', 'intro'); ?>" class="back-to-top typcn typcn-arrow-up-thick"></button>
</section> <!-- END .footer-wrapper -->
</div> <!-- END .site-wrapper -->
<?php wp_footer(); ?>
</body>
</html>