Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <!-- Content Starts -->
  4. <div id="content" class="wrap archive">
  5. <div class="col-left">
  6. <div id="main">
  7.  
  8. <h2 class="arh"><?php single_cat_title() ?></h2>
  9. <?php if (have_posts()) : $count = 0; ?>
  10. <?php while (have_posts()) : the_post(); $count++; ?>
  11.  
  12. <!-- Post Starts -->
  13. <div class="post wrap">
  14.  
  15. <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
  16.  
  17. <p class="post-details single-details"><?php printf(__('Posted on %1$s by %2$s in','woothemes'), get_the_time(get_option('date_format')), get_the_author_link()); ?> <span class="meta-cat"><?php the_category(', ') ?></span></p>
  18.  
  19. <div class="intro">
  20. <?php the_excerpt(); ?>
  21. </div>
  22. <div class="fix"></div>
  23. <div class="post-image">
  24. <?php woo_image('key=image&height=80&width=80'); ?>
  25. </div>
  26. <div class="post-content">
  27. <?php the_excerpt(); ?>
  28. </div>
  29. <div class="fix"></div>
  30. </div>
  31. <!-- Post Ends -->
  32.  
  33.  
  34. <?php if ($count == 1 && get_option('woo_ad_content') == 'true') include (TEMPLATEPATH . "/ads/content_ad.php"); ?>
  35.  
  36.  
  37.  
  38. <?php endwhile; else: ?>
  39. <p><?php _e('Sorry, no posts matched your criteria.','woothemes'); ?></p>
  40. <?php endif; ?>
  41.  
  42.  
  43.  
  44. <div class="more_entries">
  45. <?php if (function_exists('wp_pagenavi')) wp_pagenavi(); else { ?>
  46. <div class="alignleft"><?php previous_posts_link(__('&laquo; Newer Entries ','woothemes')) ?></div>
  47. <div class="alignright"><?php next_posts_link(__(' Older Entries &raquo;','woothemes')) ?></div>
  48. <br class="fix" />
  49. <?php } ?>
  50. </div>
  51.  
  52. </div><!-- main ends -->
  53. </div><!-- .col-left ends -->
  54.  
  55. <?php get_sidebar(); ?>
  56.  
  57. </div><!-- Content Ends -->
  58.  
  59. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement