footer.php 1010 B

123456789101112131415161718192021222324252627282930313233343536
  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 Radcliffe 2
  10. */
  11. ?>
  12. </div><!-- #content -->
  13. <?php radcliffe_2_contact_info( 'footer' ); ?>
  14. <footer id="colophon" class="site-footer">
  15. <div class="site-info">
  16. <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'radcliffe-2' ) ); ?>"><?php
  17. /* translators: %s: CMS name, i.e. WordPress. */
  18. printf( esc_html__( 'Proudly powered by %s', 'radcliffe-2' ), 'WordPress' );
  19. ?></a>
  20. <span class="sep"> | </span>
  21. <?php
  22. /* translators: 1: Theme name, 2: Theme author. */
  23. printf( esc_html__( 'Theme: %1$s by %2$s.', 'radcliffe-2' ), 'Radcliffe 2', '<a href="http://www.andersnoren.se" rel="designer">Anders Nor&eacute;n</a>' );
  24. ?>
  25. </div><!-- .site-info -->
  26. </footer><!-- #colophon -->
  27. </div><!-- #page -->
  28. <?php wp_footer(); ?>
  29. </body>
  30. </html>