-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
52 lines (48 loc) · 2.09 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
/**
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package kashmir
*/
?>
<footer>
<div class="footer-nav">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="chop"><img src="<?php echo get_template_directory_uri(); ?>/img/logo-kk-white.svg" alt="Home"></a>
<nav id="menu" class="nav-site">
<?php
$menuParameters = array(
'theme_location' => 'footer',
'container' => false,
'echo' => false,
'items_wrap' => '%3$s',
'depth' => 0,
);
echo strip_tags(wp_nav_menu( $menuParameters ), '<a>' );
get_template_part( 'template-parts/search' );
?>
</nav>
</div>
<div class="footer-social">
<nav>
<a href="https://www.twitter.com/kevin2kelly/"><img src="<?php echo get_template_directory_uri(); ?>/img/icon-twitter-white.svg" class="nav-icon"
alt="Follow kevin2kelly on Twitter"></a>
<a href="https://www.youtube.com/c/KevinKelly"><img src="<?php echo get_template_directory_uri(); ?>/img/icon-youtube-white.svg" class="nav-icon"
alt="Subscribe on YouTube"></a>
<a href="https://www.instagram.com/kevin2kelly/"><img src="<?php echo get_template_directory_uri(); ?>/img/icon-instagram-white.svg" class="nav-icon"
alt="Follow kevin2kelly on Instagram"></a>
<a href="https://www.facebook.com/kevin2kelly/"><img src="<?php echo get_template_directory_uri(); ?>/img/icon-facebook-white.svg" class="nav-icon"
alt="Follow kevin2kelly on Facebook"></a>
<a href="https://feedpress.me/thetechnium"><img src="<?php echo get_template_directory_uri(); ?>/img/icon-rss-white.svg" class="nav-icon"
alt="Subscribe to the feed"></a>
</nav>
<nav>
<a href="https://creativecommons.org/licenses/by/4.0/"><img src="<?php echo get_template_directory_uri(); ?>/img/icon-cc-white.svg"
class="inline-icon"></a>
<a href="/disclosure">Disclosure</a>
<a href="/contact">Contact</a>
</nav>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>