forked from AndorChen/V2Press
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
29 lines (24 loc) · 1.03 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
</div>
</div><!--END #content-->
<footer id="footer">
<div class="container">
<?php if ( has_nav_menu( 'footer' ) ) { ?>
<nav id="footer-navi">
<?php wp_nav_menu( array( 'theme_location' => 'footer', 'container' => false, 'depth' => 1) ); ?>
</nav>
<?php } ?>
<div class="colophon inner">
<?php if ( get_bloginfo( 'description' ) ) : ?>
<p><?php bloginfo( 'description' ); ?>. <?php printf( __( 'An %1$sAndor Chen%2$s creation.', 'v2press' ), '<a href="http://about.ac/" title="' . esc_attr__( 'Andor\'s personal site', 'v2press' ) . '">', '</a>' ); ?></p>
<?php endif; ?>
<p><?php _e( 'Powered by WordPress and love.', 'v2press' ); ?></p>
</div>
<div class="copyright inner">
<p>©2012 <?php bloginfo( 'name' ); ?> <?php _e( 'Some rights reserved.', 'v2press' ); ?></p>
</div>
</div>
</footer><!--END #footer-->
<?php get_template_part( 'content', 'helpers' ); ?>
<?php wp_footer(); ?>
</body>
</html>