Advertisement
Guest User

Untitled

a guest
Jun 29th, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <div id="sidebar">
  2. <ul>
  3. <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>
  4.  
  5. <li><h2>Archives</h2>
  6. <ul>
  7. <?php wp_get_archives('type=monthly'); ?>
  8. </ul>
  9. </li>
  10. <li><h2>Categories</h2>
  11. <ul>
  12. <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
  13. </ul>
  14. </li>
  15.  
  16. <?php /* If this is a page */ if ( is_home() || is_page() ) { ?>
  17. <?php get_links_list(); ?>
  18. <li><h2>Meta</h2>
  19. <ul>
  20. <?php wp_register(); ?>
  21. <li><?php wp_loginout(); ?></li>
  22. <li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
  23. <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
  24. <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
  25. <?php wp_meta(); ?>
  26. </ul>
  27. </li>
  28. <?php } ?>
  29.  
  30. <?php endif; ?>
  31. </ul>
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement