portage/footer.php
2021-08-01 13:54:17 -04:00

57 lines
977 B
PHP
Executable File

<?php
/**
* The template for displaying the footer.
*
* Contains all content after #container div.
*
* @package Portage
*/
?>
<?php do_action( 'portage_container_bottom' ); ?>
<div class="clear"></div>
</div><!-- end #container -->
<footer>
<?php portage_footer_top_link(); ?>
<?php do_action( 'portage_before_footer_menu' ); ?>
<nav id="footer-menu">
<?php wp_nav_menu( array(
'theme_location' => 'footer-menu',
'fallback_cb' => '',
'menu_class' => '',
'menu_id' => 'footermenu-ul',
'container' => 'div',
'container_id' => 'footermenu',
'depth' => 4
) );
?>
<div class="clear"></div>
</nav>
<?php do_action( 'portage_footer_top' ); ?>
<?php
portage_display_footer_copyright();
portage_display_footer_credits();
?>
<div class="clear"></div>
<?php do_action( 'portage_footer_bottom' ); ?>
</footer>
<?php do_action( 'portage_after_footer' ); ?>
<?php wp_footer(); ?>
</body>
</html>