Advertisement
Guest User

footer

a guest
Mar 27th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php $fullWidthPage = is_page_template('page-full.php'); ?>
  2.  
  3. </div> <!-- end #main-content -->
  4. </div> <!-- end #main-content-wrap -->
  5. </div> <!-- end .container -->
  6. </div> <!-- end #content -->
  7.  
  8. <div id="content-bottom">
  9. <div class="container<?php if ($fullWidthPage) echo(' nobg'); ?>"></div>
  10. </div>
  11.  
  12. <div id="footer">
  13. <div class="container clearfix">
  14.  
  15. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer') ) : ?>
  16. <?php endif; ?>
  17. <div class="clear"></div>
  18.  
  19. </div> <!--end .container -->
  20. </div> <!-- end #footer -->
  21.  
  22. <div id="footer-bottom">
  23. <div class="container clearfix">
  24. <?php global $is_footer;
  25. $is_footer = true; ?>
  26.  
  27. <?php $menuClass = 'bottom-nav';
  28. $footerNav = '';
  29.  
  30. if (function_exists('wp_nav_menu')) $footerNav = wp_nav_menu( array( 'theme_location' => 'footer-menu', 'container' => '', 'fallback_cb' => '', 'menu_class' => $menuClass, 'echo' => false, 'depth' => '1' ) );
  31. if ($footerNav == '') show_page_menu($menuClass);
  32. else echo($footerNav); ?>
  33.  
  34. <p id="copyright">&copy; 2012 The Go Mission</p>
  35. </div> <!--end .container -->
  36. </div> <!-- end #footer-bottom -->
  37.  
  38.  
  39. <?php get_template_part('includes/scripts'); ?>
  40.  
  41. <?php wp_footer(); ?>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement