Advertisement
Guest User

sidebar

a guest
Mar 27th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <div id="sidebar">
  2. <?php if (!is_home()) { ?>
  3.  
  4. <div id="onecol">
  5. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar One Column') ) : ?>
  6. <?php endif; ?>
  7. </div> <!-- end #onecol -->
  8.  
  9. <?php }; ?>
  10.  
  11. <?php if (is_home()) { ?>
  12. <div id="firstcol">
  13. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Homepage Left Column') ) : ?>
  14. <?php endif; ?>
  15. </div> <!-- end #firstcol -->
  16.  
  17. <div id="secondcol">
  18. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Homepage Right Column') ) : ?>
  19. <?php endif; ?>
  20. </div> <!-- end #secondcol -->
  21. <?php } else { ?>
  22. <div id="firstcol">
  23. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Left Column') ) : ?>
  24. <?php endif; ?>
  25. </div> <!-- end #firstcol -->
  26.  
  27. <div id="secondcol">
  28. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Right Column') ) : ?>
  29. <?php endif; ?>
  30. </div> <!-- end #secondcol -->
  31. <?php }; ?>
  32.  
  33. </div> <!-- end sidebar -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement