2021-08-01 17:32:46 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying the footer.
|
|
|
|
*
|
|
|
|
* Contains all content after #container div.
|
|
|
|
*
|
2021-08-01 17:54:17 +00:00
|
|
|
* @package Portage
|
2021-08-01 17:32:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
2021-08-01 17:54:17 +00:00
|
|
|
<?php do_action( 'portage_container_bottom' ); ?>
|
2021-08-01 17:32:46 +00:00
|
|
|
|
|
|
|
<div class="clear"></div>
|
|
|
|
|
|
|
|
</div><!-- end #container -->
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
|
2021-08-01 17:54:17 +00:00
|
|
|
<?php portage_footer_top_link(); ?>
|
2021-08-01 17:32:46 +00:00
|
|
|
|
2021-08-01 17:54:17 +00:00
|
|
|
<?php do_action( 'portage_before_footer_menu' ); ?>
|
2021-08-01 17:32:46 +00:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2021-08-01 17:54:17 +00:00
|
|
|
<?php do_action( 'portage_footer_top' ); ?>
|
2021-08-01 17:32:46 +00:00
|
|
|
|
|
|
|
<?php
|
2021-08-01 17:54:17 +00:00
|
|
|
portage_display_footer_copyright();
|
|
|
|
portage_display_footer_credits();
|
2021-08-01 17:32:46 +00:00
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="clear"></div>
|
|
|
|
|
2021-08-01 17:54:17 +00:00
|
|
|
<?php do_action( 'portage_footer_bottom' ); ?>
|
2021-08-01 17:32:46 +00:00
|
|
|
|
|
|
|
</footer>
|
|
|
|
|
2021-08-01 17:54:17 +00:00
|
|
|
<?php do_action( 'portage_after_footer' ); ?>
|
2021-08-01 17:32:46 +00:00
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|