-
Notifications
You must be signed in to change notification settings - Fork 3
/
footer.php
81 lines (71 loc) · 2.13 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package lsx
*/
?>
</div><!-- .content -->
</div><!-- .wrap -->
<?php lsx_footer_before(); ?>
<footer id="colophon" class="content-info" role="contentinfo">
<div class="container">
<div class="row">
<div class="col-sm-12">
<?php lsx_footer_top(); ?>
<p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) echo 'credit-float'; ?>">
<?php
printf(
/* Translators: 1: current year, 2: blog name */
esc_html__( '© %1$s %2$s All Rights Reserved', 'lsx' ),
esc_html( date_i18n( 'Y' ) ),
esc_html( get_bloginfo( 'name' ) )
);
?>
<?php if ( apply_filters( 'lsx_credit_link', true ) ) : ?>
<?php
printf(
/* Translators: 1: theme name, 2: author name and link */
esc_html__( ' | %1$s is a WordPress theme developed by %2$s.', 'lsx' ),
'LSX',
'<a href="https://www.lsdev.biz/" rel="nofollow noreferrer noopener" title="LightSpeed WordPress Development - Unlocking the full value of your business, online" rel="author nofollow noopener noreferrer" >LightSpeed</a>'
);
?>
<?php endif; ?>
</p>
<?php if ( has_nav_menu( 'social' ) ) : ?>
<nav id="social-navigation" class="social-navigation">
<?php
wp_nav_menu(
array(
'theme_location' => 'social',
'depth' => 1,
)
);
?>
</nav><!-- .social-navigation -->
<?php endif; ?>
<?php if ( has_nav_menu( 'footer' ) ) : ?>
<nav id="footer-navigation" class="footer-navigation">
<?php
wp_nav_menu(
array(
'theme_location' => 'footer',
'depth' => 1,
)
);
?>
</nav><!-- .footer-navigation -->
<?php endif; ?>
<?php lsx_footer_bottom(); ?>
</div>
</div>
</div>
</footer>
<?php lsx_footer_after(); ?>
<?php lsx_body_bottom(); ?>
<?php wp_footer(); ?>
</body>
</html>