-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·72 lines (63 loc) · 2.17 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
<?php
/**
* The template for displaying the footer
*
* Contains the opening of the #site-footer div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WordPress
* @subpackage Twenty_Twenty
* @since 1.0.0
*/
$has_sidebar = is_active_sidebar( 'sidebar-footer' );
$has_subscription = is_active_sidebar( 'sidebar-footer-subscription' );
?>
<footer id="site-footer" role="contentinfo" class="footer logovo-footer header-footer-group">
<?php if ( $has_sidebar ) { ?>
<div class="logovo-footer-subscription">
<div class="section-inner">
<div class="logovo-footer-widgets">
<?php dynamic_sidebar( 'sidebar-footer-subscription' ); ?>
</div>
</div>
</div>
<?php } ?>
<?php if ( $has_sidebar ) { ?>
<div class="section-inner">
<div class="logovo-footer-widgets">
<?php dynamic_sidebar( 'sidebar-footer' ); ?>
</div>
</div>
<?php } ?>
<div class="section-inner logovo-footer-bottom">
<div class="logovo-footer-credits">
<copyright class="logovo-footer-copyright">©
<?php
echo date_i18n(
/* translators: Copyright date format, see https://secure.php.net/date */
_x( 'Y', 'copyright date format', 'twentytwenty' )
);
?>
Logovo Solutions, Inc.
</copyright>
</div>
<a class="to-the-top" href="#site-header">
<span class="to-the-top-long">
<?php
/* translators: %s: HTML character for up arrow */
printf( __( 'To the top %s', 'twentytwenty' ), '<span class="arrow" aria-hidden="true">↑</span>' );
?>
</span><!-- .to-the-top-long -->
<span class="to-the-top-short">
<?php
/* translators: %s: HTML character for up arrow */
printf( __( 'Up %s', 'twentytwenty' ), '<span class="arrow" aria-hidden="true">↑</span>' );
?>
</span><!-- .to-the-top-short -->
</a><!-- .to-the-top -->
</div><!-- .section-inner -->
</footer><!-- #site-footer -->
<?php wp_footer(); ?>
</body>
</html>