-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
46 lines (40 loc) · 1.34 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package proton
*/
?>
<footer class="site-footer outer">
<div class="inner">
<section class="copyright"><a href="<?php echo esc_url( home_url() ); ?>"><?php echo esc_html( get_bloginfo( 'name' ) ); ?></a> © <?php echo esc_html( date("Y") ); ?></section>
<nav class="site-footer-nav">
<?php
wp_nav_menu(
array(
'theme_location' => 'secondary',
'menu_class' => 'nav',
'depth' => 1
)
);
?>
</nav>
<div>
<a href="<?php echo esc_url( __( 'https://chrisyee.ca/proton', 'proton' ) ); ?>" target="_blank" rel="noopener"><?php esc_html_e( 'Proton by Chris Yee', 'proton' ); ?></a>
</div>
</div>
</footer>
</div>
<div id="search" class="search-overlay">
<button class="search-overlay-close" aria-label="close search overlay"></button>
<div class="search-overlay-content">
<?php get_search_form(); ?>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>