-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfooter.php
72 lines (50 loc) · 1.62 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 footer for our theme.
* This template is used to generate the footer for the theme.
*
* @package 90s Retro
* @since 90s Retro 1.0
*/
?>
<!-- END .container -->
</div>
<!-- BEGIN .footer -->
<div class="footer">
<!-- BEGIN .row -->
<div class="row">
<!-- BEGIN .content -->
<div class="content">
<!-- BEGIN .footer-information -->
<div class="footer-information">
<div class="align-left">
<p><?php esc_html_e( 'Copyright', '90s-retro' ); ?> © <?php echo date( esc_html__( 'Y', '90s-retro' ) ); ?> · <?php esc_html_e( 'All Rights Reserved', '90s-retro' ); ?> · <?php bloginfo( 'name' ); ?></p>
<p><?php esc_html_e( '90s Retro', '90s-retro' ); ?> <?php esc_html_e( 'from', '90s-retro' ); ?> <a href="https://organicthemes.com" target="_blank"><?php esc_html_e( 'Organic Themes', '90s-retro' ); ?></a> · <a href="<?php bloginfo( 'rss2_url' ); ?>"><?php esc_html_e( 'RSS Feed', '90s-retro' ); ?></a> · <?php wp_loginout(); ?></p>
</div>
<div class="align-right">
<?php if ( has_nav_menu( 'social-menu' ) ) { ?>
<?php wp_nav_menu( array(
'theme_location' => 'social-menu',
'title_li' => '',
'depth' => 1,
'container_class' => 'social-menu',
'menu_class' => 'social-icons',
'link_before' => '<span>',
'link_after' => '</span>',
)
); ?>
<?php } ?>
</div>
<!-- END .footer-information -->
</div>
<!-- END .content -->
</div>
<!-- END .row -->
</div>
<!-- END .footer -->
</div>
<!-- END #wrapper -->
</div>
<?php wp_footer(); ?>
</body>
</html>