-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
48 lines (38 loc) · 1.29 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
<?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 sonnet
*/
?>
</div><?php # END content ?>
</div><?php # END wrapper ?>
<footer class="footer grid" role="contentinfo">
<div class="col-1-2">
<p>© <?php echo date("Y"); echo " "; bloginfo('name'); ?>. Design by <a href="http://tinktank.in">Tink <span class="tinktank">⚒</span> Tank</a>.</p>
<?php
if ( has_nav_menu( 'social' ) ) : ?>
<nav class="social-navigation" role="navigation" aria-label="<?php _e( 'Footer Social Links Menu', 'sonnet' ); ?>">
<?php
wp_nav_menu( array(
'theme_location' => 'social',
'menu_class' => 'social-menu',
'depth' => 1,
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>' . sonnet_get_svg( array( 'icon' => 'chain' ) ),
) );
?>
</nav><!-- .social-navigation -->
<?php endif;
?>
</div>
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer Widgets')) : else : ?>
<?php endif; ?>
</footer>
<?php wp_footer(); ?>
</body>
</html>