Melville/footer.php

31 lines
1.0 KiB
PHP
Raw Normal View History

2020-03-15 10:26:50 -04:00
<?php /* The footer for our theme.*/ ?>
</div><!--//content-->
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #wrapper div and all content
2020-03-15 10:26:50 -04:00
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 3.0
*/
?>
<div class="push">
</div><!-- #push -->
2020-03-15 10:26:50 -04:00
<div id="menu"><?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
<?php wp_nav_menu( array( 'container_class' => 'melville_footer_menu', 'theme_location' => 'footer-menu' ) ); ?>
</div> <!-- #menu -->
2020-03-15 10:26:50 -04:00
<div id="footer">
<?php get_sidebar( 'footer' ); ?>
2020-03-15 10:26:50 -04:00
<?php wp_footer();?>
<?php if(melville_footer == show) {echo '<p class="credits">Made by <a href="http://madebyraygun.com">Raygun</a>, powered by <a href="http://wordpress.org/" rel="generator">WordPress</a></p>';}?>
</div><!--/footer-->
</div><!--#wrapper-->
2020-03-15 10:26:50 -04:00
</body>
</html>