Advertisement
Guest User

Footer

a guest
Jun 21st, 2014
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying the footer
  4. *
  5. * Contains footer content and the closing of the #main and #page div elements.
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Fourteen
  9. * @since Twenty Fourteen 1.0
  10. */
  11. ?>
  12.  
  13. </div><!-- #main -->
  14.  
  15. <footer id="colophon" class="site-footer" role="contentinfo">
  16.  
  17. <?php get_sidebar( 'footer' ); ?>
  18.  
  19. <div class="site-info">
  20. Copyright &copy; <?php echo date ('Y');?>
  21. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
  22. </div><!-- .site-info -->
  23. </footer><!-- #colophon -->
  24. </div><!-- #page -->
  25.  
  26. <?php wp_footer(); ?>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement