Advertisement
Guest User

Untitled

a guest
Jun 11th, 2012
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php if( ! is_page() && !is_single() ) :?>
  2. <div id="sidebar-left">
  3. <ul class="sidebar_list">
  4. <?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(3)) : ?>
  5.  
  6. <li class="widget_categories">
  7. <h6>Categories</h6>
  8. <ul>
  9. <?php wp_list_categories('orderby=name&show_count=1&use_desc_for_title=0&title_li=&depth=1'); ?>
  10. </ul>
  11. </li>
  12.  
  13. <li class="widget_pages">
  14. <h6>Pages</h6>
  15. <ul>
  16. <?php wp_list_pages('orderby=name&title_li=&depth=1'); ?>
  17. </ul>
  18. </li>
  19.  
  20. <li class="widget_archive">
  21. <h6>Archives</h6>
  22. <ul>
  23. <?php wp_get_archives('type=monthly&limit=12&show_post_count=1'); ?>
  24. </ul>
  25. </li>
  26.  
  27. <?php endif; ?>
  28. </ul><!-- SIDEBARLIST END -->
  29. </div><!-- SIDEBAR LEFT END -->
  30. <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement