Advertisement
Guest User

footer.php

a guest
Sep 19th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. <?php
  2. /**
  3. * Theme Footer
  4. */
  5. ?>
  6. <!-- Footer Start -->
  7.  
  8. <footer id="footer">
  9.  
  10. <div id="footer-left">
  11.  
  12. <?php
  13. wp_nav_menu( array(
  14. 'theme_location' => 'footer',
  15. 'menu_id' => 'footer-menu-links',
  16. 'container' => false, // don't wrap in div
  17. 'depth' => 1, // no sub menus
  18. 'fallback_cb' => false // don't show pages if no menu found - show nothing
  19. ) );
  20. ?>
  21.  
  22. <?php risen_icons( 'footer' ); ?>
  23.  
  24. <div class="clear"></div>
  25.  
  26. </div>
  27.  
  28. <div id="footer-right">
  29.  
  30. <?php if ( risen_option( 'footer_address' ) || risen_option( 'footer_phone' ) ) : ?>
  31. <ul id="footer-contact">
  32.  
  33. <?php if ( risen_option( 'footer_address' ) ) : ?>
  34. <li><span class="footer-icon <?php echo ! risen_option( 'footer_address_non_church' ) ? 'church' : 'generic'; ?>"></span> <?php echo risen_option( 'footer_address' ); ?></li>
  35. <?php endif; ?>
  36.  
  37. <?php if ( risen_option( 'footer_phone' ) ) : ?>
  38. <li><span class="footer-icon phone"></span> <?php echo risen_option( 'footer_phone' ); ?></li>
  39. <?php endif; ?>
  40.  
  41. </ul>
  42. <?php endif; ?>
  43.  
  44. <?php if ( risen_option( 'footer_copyright' ) ) : ?>
  45. <div id="copyright">
  46. <?php echo do_shortcode( risen_option( 'footer_copyright' ) ); ?>
  47. </div>
  48. <?php endif; ?>
  49.  
  50. </div>
  51.  
  52. <div class="clear"></div>
  53.  
  54. </footer>
  55.  
  56. <div id="footer-bottom"></div>
  57.  
  58. <!-- Footer End -->
  59.  
  60. </div>
  61.  
  62. </div>
  63.  
  64. <!-- Container End -->
  65.  
  66. <?php
  67. wp_footer(); // a hook for extra code in the footer, if needed
  68. ?>
  69.  
  70. </body>
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement