Advertisement
Guest User

caiminds footer

a guest
Jun 9th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <?php $options = get_option( 'quik_gallery_settings' ); ?>
  2. <div class="clear"></div>
  3. </div><!-- /container -->
  4. </div><!-- /wrap -->
  5. <?php
  6. // check if the extended footer is disabled, if not show it
  7. if ($options['extended_footer'] != true) { ?>
  8. <div id="footer-wrap">
  9. <div id="footer" class="sub-menu">
  10. <div id="footer-widget-left">
  11. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Left') ) : ?>
  12. <?php endif; ?>
  13. </div><!--/footer-widget-left -->
  14. <div id="footer-widget-middle-left">
  15. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Middle Left') ) : ?>
  16. <?php endif; ?>
  17. </div><!--/footer-widget-middle-left -->
  18. <div id="footer-widget-middle-right">
  19. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Middle Right') ) : ?>
  20. <?php endif; ?>
  21. </div><!--/footer-widget-middle-right -->
  22. <div id="footer-widget-right">
  23. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Right') ) : ?>
  24. <?php endif; ?>
  25. </div><!--/footer-right -->
  26. <div class="clear"></div>
  27. </div><!--/footer -->
  28. </div><!--/footer-wrap -->
  29. <?php } ?>
  30. <?php get_template_part( 'important' ) ?>
  31. <?php wp_footer(); ?>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement