footer.php 862 B

12345678910111213141516171819202122232425262728293031323334
  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. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package photos
  10. */
  11. ?>
  12. </div><!-- #content -->
  13. <footer id="colophon" class="site-footer">
  14. <div class="container">
  15. <?php photos_social_menu(); ?>
  16. <div class="site-info">
  17. <a href="<?php echo esc_url( __( 'https://wordpress.com/', 'photos' ) ); ?>">
  18. <?php
  19. /* translators: 1: Theme name, 2: Theme author. */
  20. printf( esc_html__( 'Theme: %1$s by %2$s.', 'photos' ), 'Photos', '<a href="http://wordpress.com/themes/" rel="designer">Automattic</a>' );
  21. ?>
  22. </a>
  23. </div><!-- .site-info -->
  24. </div><!-- .container -->
  25. </footer><!-- #colophon -->
  26. </div><!-- #page -->
  27. <?php wp_footer(); ?>
  28. </body>
  29. </html>