-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfooter.php
More file actions
33 lines (26 loc) Β· 777 Bytes
/
footer.php
File metadata and controls
33 lines (26 loc) Β· 777 Bytes
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
</main>
<footer class="site-footer">
<div class="site-info container">
<?php if ( has_nav_menu( 'social' ) ) : ?>
<nav class="social-navigation">
<?php
wp_nav_menu(
array(
'theme_location' => 'social',
'menu_class' => 'social-links-menu',
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
'depth' => 1,
)
);
?>
</nav><!-- .social-navigation -->
<?php endif; ?>
<p>© <?php echo date("Y"); ?></p>
</div>
</footer>
<?php wp_footer(); ?>
<script src="<?php echo get_template_directory_uri(); ?>/js/main.js" type="text/javascript"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js/theme.js" type="text/javascript"></script>
</body>
</html>