portage/footer.php

57 lines
1.0 KiB
PHP
Raw Normal View History

2021-08-01 17:32:46 +00:00
<?php
/**
* The template for displaying the footer.
*
* Contains all content after #container div.
*
* @package Atticus Finch
*/
?>
<?php do_action( 'atticus_finch_container_bottom' ); ?>
<div class="clear"></div>
</div><!-- end #container -->
<footer>
<?php atticus_finch_footer_top_link(); ?>
<?php do_action( 'atticus_finch_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( 'atticus_finch_footer_top' ); ?>
<?php
atticus_finch_display_footer_copyright();
atticus_finch_display_footer_credits();
?>
<div class="clear"></div>
<?php do_action( 'atticus_finch_footer_bottom' ); ?>
</footer>
<?php do_action( 'atticus_finch_after_footer' ); ?>
<?php wp_footer(); ?>
</body>
</html>