-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
38 lines (33 loc) · 1.04 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Goran
*/
?>
</div><!-- #content -->
<?php get_sidebar( 'footer' ); ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php if ( has_nav_menu( 'footer' ) ) : ?>
<nav class="footer-navigation" role="navigation">
<?php
wp_nav_menu( array(
'theme_location' => 'footer',
'menu_class' => 'clear',
'depth' => 1,
) );
?>
</nav><!-- .footer-navigation -->
<?php endif; ?>
<div class="site-info">
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'goran' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'goran' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s.', 'goran' ), 'Goran', '<a href="http://wordpress.com/themes/goran/" rel="designer">WordPress.com</a>' ); ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>