footer.php 965 B

1234567891011121314151617181920212223242526272829303132
  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 Shoreditch
  10. */
  11. ?>
  12. </div><!-- #content -->
  13. <footer id="colophon" class="site-footer" role="contentinfo">
  14. <div class="site-footer-wrapper">
  15. <?php shoreditch_social_menu(); ?>
  16. <div class="site-info">
  17. <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'shoreditch' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'shoreditch' ), 'WordPress' ); ?></a>
  18. <span class="sep">/</span>
  19. <?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'shoreditch' ), 'Shoreditch', '<a href="https://wordpress.com/themes/" rel="designer">Automattic</a>' ); ?>
  20. </div><!-- .site-info -->
  21. </div><!-- .site-footer-wrapper -->
  22. </footer><!-- #colophon -->
  23. </div><!-- #page -->
  24. <?php wp_footer(); ?>
  25. </body>
  26. </html>