Guest User

johnburn

a guest
Jul 23rd, 2010
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.66 KB | None | 0 0
  1. <div id="bottom">
  2. <div class="wrap">
  3.     <div id="bottomleft">
  4. <?php if (!dynamic_sidebar('Bottom Left')): ?>
  5. <div class="widget">
  6.         <h5><?php _e('Widget Area'); ?></h5>
  7.         <p>This section is widgetized. Feel free to add widgets to this area via the Widgets Administration Panel.</p>
  8.         </div>
  9.               <?php
  10. endif; ?>                
  11.               </div>
  12.    
  13.     <div id="bottommiddle">
  14.         <?php if (!dynamic_sidebar('Bottom Middle')): ?>
  15.         <div class="widget">
  16.         <h5><?php _e('Widget Area'); ?></h5>
  17.         <p>This section is widgetized. Feel free to add widgets to this area via the Widgets Administration Panel.</p>
  18.         </div>
  19.         <?php
  20. endif; ?>
  21.         </div>
  22.    
  23.     <div id="bottomright">
  24.         <?php if (!dynamic_sidebar('Bottom Right')): ?>
  25.         <div class="widget">
  26.         <h5><?php _e('Widget Area'); ?></h5>
  27.         <p>This section is widgetized. Feel free to add widgets to this area via the Widgets Administration Panel.</p>
  28.         </div>
  29. <?php
  30. endif; ?>
  31.  <?php wp_footer(); //We need this for plugins
  32.  ?>
  33. </div>
  34. <div class="clearfix"></div>
  35. </div>
  36. </div>
  37.  
  38. <div id="footer">
  39. <div class="wrap">
  40.    
  41.     <div class="alignleft">Copyright &copy; <?php echo date("Y"); ?> &middot; <a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a>, All Rights Reserved</div>
  42.     <div class="alignright">Powered by <a href="http://www.free-premium-wordpress-themes.com" rel="dofollow">Free Premium Wordpress Themes</a> - designed by <a href="http://ithemes.com">iThemes</a></div>
  43.     <div class="clearfix"></div>
  44. </div>
  45. </div>
  46.  
  47. <?php do_action('ithemes_footer'); ?>
  48. </body>
  49. </html>
Add Comment
Please, Sign In to add comment