-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter.php
27 lines (21 loc) · 863 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
</div><!-- #main -->
<footer id="colophon" class="site-footer clear" role="contentinfo">
<div class="wrap">
<?php do_action( 'daysinjapan_credits' ); ?>
<?php if ( is_active_sidebar( 'footer-about' ) ) : ?>
<?php dynamic_sidebar( 'footer-about' ); ?>
<?php endif; ?>
<div class="menu-bottom">
<h4><?php esc_attr_e( 'Menu' ); ?></h4>
<?php wp_nav_menu( array( 'theme_location' => 'secondary', 'container_class' => '' ) ); ?>
</div>
<div class="credits">
<h4><?php esc_attr_e( 'Credits' ); ?></h4>
<p><?php bloginfo( 'name' ); ?> — <?php echo date('Y'); ?></p>
<p><a href="http://19daysinjapan.com/" title="<?php esc_attr_e( '19 Days in Japan Theme' ); ?>"><?php printf( __( 'Theme: %s', 'daysinjapan' ), '19 Days in Japan' ); ?></a></p>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>