footer.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 Illustratr
  8. */
  9. ?>
  10. </div><!-- #content -->
  11. <footer id="colophon" class="site-footer" role="contentinfo">
  12. <div class="footer-area clear">
  13. <?php
  14. if ( has_nav_menu( 'social' ) ) {
  15. wp_nav_menu( array(
  16. 'theme_location' => 'social',
  17. 'container_class' => 'menu-social',
  18. 'menu_class' => 'clear',
  19. 'link_before' => '<span class="screen-reader-text">',
  20. 'link_after' => '</span>',
  21. 'depth' => 1,
  22. ) );
  23. }
  24. ?>
  25. <div class="site-info">
  26. <a href="http://wordpress.org/" rel="generator"><?php printf( __( 'Proudly powered by %s', 'illustratr' ), 'WordPress' ); ?></a>
  27. <span class="sep"> | </span>
  28. <?php printf( __( 'Theme: %1$s by %2$s.', 'illustratr' ), 'Illustratr', '<a href="https://wordpress.com/themes/" rel="designer">WordPress.com</a>' ); ?>
  29. </div><!-- .site-info -->
  30. </div><!-- .footer-area -->
  31. </footer><!-- #colophon -->
  32. </div><!-- #page -->
  33. <?php wp_footer(); ?>
  34. </body>
  35. </html>