Melville/footer.php
2020-06-29 19:18:54 -04:00

31 lines
1.0 KiB
PHP

<?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
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 3.0
*/
?>
<div class="push">
</div><!-- #push -->
<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' => 'menu-footer', 'theme_location' => 'primary' ) ); ?>
</div> <!-- #menu -->
<div id="footer">
<?php get_sidebar( 'footer' ); ?>
<?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-->
</body>
</html>