-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
38 lines (37 loc) · 920 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
/**
* Theme Footer Section for our theme.
*
* Displays all of the footer section and closing of the #main div.
*
* @package ThemeGrill
* @subpackage Explore
* @since Explore 1.0
*/
?>
</div><!-- #main -->
<?php do_action( 'explore_before_footer' ); ?>
<footer id="colophon" class="clearfix">
<?php get_sidebar( 'footer' ); ?>
<div class="footer-socket-wrapper clearfix">
<div class="inner-wrap">
<div class="footer-socket-area">
<?php do_action( 'explore_footer_copyright' ); ?>
<nav class="small-menu clearfix">
<?php
if ( has_nav_menu( 'footer' ) ) {
wp_nav_menu( array( 'theme_location' => 'footer',
'depth' => -1
) );
}
?>
</nav>
</div>
</div>
</div>
</footer>
<a href="#masthead" id="scroll-up"></a>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>