Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. if (is_home()||is_single()||is_404()||is_archive()||is_search()||is_page_template('page.php')) { ?>
  3. <div class="blog-right left">
  4. <h3>Articles by Date</h3>
  5. <ul>
  6. <?php wp_get_archives('type=monthly'); ?>
  7. </ul>
  8. <h3>Articles by Topic</h3>
  9. <ul>
  10. <?php wp_list_categories('orderby=name&title_li=&exclude=5'); ?>
  11. </ul>
  12. <h3>Articles by Contributor</h3>
  13. <ul>
  14. <?php wp_list_authors('show_fullname=1&optioncount=1'); ?>
  15. </ul>
  16. </div>
  17. <!-- End #blog-right -->
  18. <?php } ?>
Add Comment
Please, Sign In to add comment