footer.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 WordPress
  8. * @subpackage Twenty_Sixteen
  9. * @since Twenty Sixteen 1.0
  10. */
  11. ?>
  12. </div><!-- .site-content -->
  13. <footer id="colophon" class="site-footer" role="contentinfo">
  14. <?php if ( has_nav_menu( 'primary' ) ) : ?>
  15. <nav class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Primary Menu', 'twentysixteen' ); ?>">
  16. <?php
  17. wp_nav_menu( array(
  18. 'theme_location' => 'primary',
  19. 'menu_class' => 'primary-menu',
  20. ) );
  21. ?>
  22. </nav><!-- .main-navigation -->
  23. <?php endif; ?>
  24. <?php if ( has_nav_menu( 'social' ) ) : ?>
  25. <nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Social Links Menu', 'twentysixteen' ); ?>">
  26. <?php
  27. wp_nav_menu( array(
  28. 'theme_location' => 'social',
  29. 'menu_class' => 'social-links-menu',
  30. 'depth' => 1,
  31. 'link_before' => '<span class="screen-reader-text">',
  32. 'link_after' => '</span>',
  33. ) );
  34. ?>
  35. </nav><!-- .social-navigation -->
  36. <?php endif; ?>
  37. <div class="site-info">
  38. <?php
  39. /**
  40. * Fires before the twentysixteen footer text for footer customization.
  41. *
  42. * @since Twenty Sixteen 1.0
  43. */
  44. do_action( 'twentysixteen_credits' );
  45. ?>
  46. <span class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span>
  47. <?php
  48. if ( function_exists( 'the_privacy_policy_link' ) ) {
  49. the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
  50. }
  51. ?>
  52. <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentysixteen' ) ); ?>" class="imprint">
  53. <?php printf( __( 'Proudly powered by %s', 'twentysixteen' ), 'WordPress' ); ?>
  54. </a>
  55. </div><!-- .site-info -->
  56. </footer><!-- .site-footer -->
  57. </div><!-- .site-inner -->
  58. </div><!-- .site -->
  59. <?php wp_footer(); ?>
  60. </body>
  61. </html>