An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
977 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <?php
  2. /**
  3. * The template for displaying the footer.
  4. *
  5. * Contains all content after #container div.
  6. *
  7. * @package Portage
  8. */
  9. ?>
  10. <?php do_action( 'portage_container_bottom' ); ?>
  11. <div class="clear"></div>
  12. </div><!-- end #container -->
  13. <footer>
  14. <?php portage_footer_top_link(); ?>
  15. <?php do_action( 'portage_before_footer_menu' ); ?>
  16. <nav id="footer-menu">
  17. <?php wp_nav_menu( array(
  18. 'theme_location' => 'footer-menu',
  19. 'fallback_cb' => '',
  20. 'menu_class' => '',
  21. 'menu_id' => 'footermenu-ul',
  22. 'container' => 'div',
  23. 'container_id' => 'footermenu',
  24. 'depth' => 4
  25. ) );
  26. ?>
  27. <div class="clear"></div>
  28. </nav>
  29. <?php do_action( 'portage_footer_top' ); ?>
  30. <?php
  31. portage_display_footer_copyright();
  32. portage_display_footer_credits();
  33. ?>
  34. <div class="clear"></div>
  35. <?php do_action( 'portage_footer_bottom' ); ?>
  36. </footer>
  37. <?php do_action( 'portage_after_footer' ); ?>
  38. <?php wp_footer(); ?>
  39. </body>
  40. </html>