Advertisement
Guest User

Untitled

a guest
Feb 21st, 2012
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. </div>
  2.  
  3. <div class="clear"></div>
  4.  
  5. <div id="footer-wrapper">
  6.  
  7. <div id="footer">
  8.  
  9. <?php
  10. if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Widget 1')):
  11. endif;
  12. ?>
  13.  
  14. <?php
  15. if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Widget 2')):
  16. endif;
  17. ?>
  18.  
  19. <?php
  20. if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Widget 3')):
  21. endif;
  22. ?>
  23.  
  24. <?php
  25. if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer Widget 4')):
  26. endif;
  27. ?>
  28.  
  29. </div>
  30.  
  31. </div>
  32.  
  33. <div id="bottom-wrapper">
  34.  
  35. <div id="bottom">
  36.  
  37. <span class="totop"><a href="#"><?php _e('Back to Top', 'pyre'); ?></a></span>
  38. <?php if(get_option('pyre_footer_left')): ?>
  39. <span class="left"><?php echo get_option('pyre_footer_left'); ?></span>
  40. <?php endif; ?>
  41. <?php if(get_option('pyre_footer_right')): ?>
  42. <span class="right"><?php echo get_option('pyre_footer_right'); ?></span>
  43. <?php endif; ?>
  44.  
  45. </div>
  46.  
  47. </div>
  48.  
  49. <?php
  50. if(get_option('pyre_analytics')) {
  51. echo get_option('pyre_analytics');
  52. }
  53. ?>
  54.  
  55. <?php wp_footer(); ?>
  56.  
  57. </body>
  58.  
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement