-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
52 lines (38 loc) · 1.39 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
<?php
/**
* The template for displaying the footer
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
*/
?>
</div><!-- #content -->
<?php get_sidebar( 'sidebar2' ); ?>
</div><!-- #outer-content -->
<footer id="colophon" class="colophon outer-width">
<div class="colophon-inner">
<div id="footer-links-container" class="footer-links-container" role="navigation" aria-labelledby="links-label">
<span id="links-label" class="screen-reader-text">Footer Menu</span>
<?php
wp_nav_menu( array(
'menu_id' => 'footer-links',
'theme_location' => 'footer-links',
'container' => ''
) );
?>
</div><!-- #footer-links-container -->
<div id="notices" class="notices">
<div class="copyright">Copyright © <?php echo date( 'Y' ); ?> <?php bloginfo( 'name' ); esc_html_e( '. All Rights Reserved.', 'bedrock' ) ?></div>
<a href="<?php echo esc_url( __( 'https://www.classicpress.net/', 'bedrock' ) ); ?>"><?php esc_html_e( 'Proudly powered by ClassicPress', 'bedrock' ); ?></a>
<span> | </span>
<?php
/* translators: 1: Theme name, 2: Theme author. */
printf( esc_html__( 'Theme: %1$s by %2$s', 'bedrock' ), '<a href="https://github.com/KTS915/Bedrock">Bedrock</a>', '<a href="https://timkaye.org">Tim Kaye</a>' );
?>
</div>
</div>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>