Advertisement
itbatayan

sidebar.php

Oct 15th, 2018
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <div id="sidebar">
  2. <h2> Sidebar area</h2>
  3.  
  4. <h2><?php _e('Categories'); ?></h2>
  5.  
  6. <ul>
  7. <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
  8. </ul>
  9.  
  10. <h2><?php _e('Archives'); ?></h2>
  11.  
  12. <ul>
  13. <?php wp_get_archives('type=monthly'); ?>
  14. </ul>
  15.  
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement