Advertisement
Guest User

archives2012

a guest
Aug 2nd, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Archives
  4. */
  5.  
  6. get_header(); ?>
  7.  
  8. <?php if (have_posts()) { while (have_posts()) { the_post(); ?>
  9.  
  10. <div class="primary-span entry">
  11. <div class="meta">
  12. <h1 class="title"><?php the_title(); ?></h1>
  13. <?php edit_post_link(__('edit page','tarski'), '<p class="metadata">(', ')</p>'); ?>
  14. </div> <!-- /meta -->
  15.  
  16. <?php if(get_the_content() != "") { ?>
  17. <div class="content">
  18. <?php the_content(); ?>
  19. </div> <!-- /content -->
  20.  
  21. <?php } ?>
  22. </div> <!-- /page header -->
  23.  
  24. <div class="primary">
  25. <h3><?php _e('Monthly Archives', 'tarski'); ?></h3>
  26.  
  27. <ul class="archivelist xoxo">
  28. <?php wp_get_archives(array('type' => 'monthly', 'show_post_count' => true)); ?>
  29. </ul>
  30. <?php th_postend(); ?>
  31. </div> <!-- /primary -->
  32. <?php } } ?>
  33.  
  34. <div class="secondary">
  35. <?php if(get_tarski_option('show_categories')) { ?>
  36. <h3><?php _e('Category Archives', 'tarski'); ?></h3>
  37. <ul class="archivelist xoxo">
  38. <?php wp_list_categories(array('order' => 'DESC', 'title_li' => false)); ?>
  39. </ul>
  40. <?php } ?>
  41. <?php th_sidebar(); ?>
  42. </div> <!-- /secondary -->
  43. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement