footer.php 1013 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * The template for displaying the footer
  4. *
  5. * Contains the closing of the "site-content" div and all content after.
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Fifteen
  9. * @since Twenty Fifteen 1.0
  10. */
  11. ?>
  12. </div><!-- .site-content -->
  13. <footer id="colophon" class="site-footer" role="contentinfo">
  14. <div class="site-info">
  15. <?php
  16. /**
  17. * Fires before the Twenty Fifteen footer text for footer customization.
  18. *
  19. * @since Twenty Fifteen 1.0
  20. */
  21. do_action( 'twentyfifteen_credits' );
  22. ?>
  23. <?php
  24. if ( function_exists( 'the_privacy_policy_link' ) ) {
  25. the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
  26. }
  27. ?>
  28. <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>" class="imprint">
  29. <?php printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?>
  30. </a>
  31. </div><!-- .site-info -->
  32. </footer><!-- .site-footer -->
  33. </div><!-- .site -->
  34. <?php wp_footer(); ?>
  35. </body>
  36. </html>