forked from anestan/wp_theme_waggishdogs-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
38 lines (32 loc) · 889 Bytes
/
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
<?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 underscores_tailwind
*/
?>
<footer id="colophon" class="site-footer bg-green-400 text-white">
<div class="py-10 text-center text-xl">
<a href="<?php echo get_home_url(); ?>"><?php echo get_bloginfo( 'name' ) ?></a>
</div>
<div class="tw-apply-footer-menu pb-10 text-lg">
<?php
wp_nav_menu(
array(
'theme_location' => 'menu-2',
'menu_id' => 'footer-menu',
)
);
?>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
<script>var clicky_site_ids = clicky_site_ids || []; clicky_site_ids.push(101285822);</script>
<script async src="//static.getclicky.com/js"></script>
</body>
</html>