footer.php 984 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * The template for displaying the footer.
  4. *
  5. * Contains the closing of the #content div and all content after
  6. *
  7. * @package Sketch
  8. */
  9. ?>
  10. </div><!-- #content -->
  11. <footer id="colophon" class="site-footer" role="contentinfo">
  12. <?php if ( has_nav_menu ( 'social' ) ) : ?>
  13. <?php wp_nav_menu( array( 'theme_location' => 'social', 'depth' => 1, 'link_before' => '<span class="screen-reader-text">', 'link_after' => '</span>', 'container_class' => 'social-links', ) ); ?>
  14. <?php endif; ?>
  15. <div class="site-info">
  16. <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'sketch' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'sketch' ), 'WordPress' ); ?></a>
  17. <span class="sep"> | </span>
  18. <?php printf( __( 'Theme: %1$s by %2$s.', 'sketch' ), 'Sketch', '<a href="https://wordpress.com/themes/" rel="designer">WordPress.com</a>' ); ?>
  19. </div><!-- .site-info -->
  20. </footer><!-- #colophon -->
  21. </div><!-- #page -->
  22. <?php wp_footer(); ?>
  23. </body>
  24. </html>