Advertisement
Guest User

category

a guest
Mar 21st, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Template for displaying a category page.
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8.  
  9. <div class="content_resize">
  10. <div class="product_cont">
  11.  
  12. <?php include "solarpath-menu.php" ; ?>
  13. </div><div class="container">
  14.  
  15. <h2><?php single_cat_title(); ?></h2>
  16.  
  17. <div class="product_text">
  18. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  19. <h2><?php the_title(); ?></h2>
  20. <?php the_content(); ?>
  21.  
  22.  
  23. </div>
  24. <div class="product_img">
  25. <?php the_post_thumbnail( 'full' ); ?>
  26.  
  27.  
  28. </div>
  29. <div class="clr"></div>
  30. <div class="product_foot">
  31. <p>More images</p>
  32.  
  33. <?php //echo file_gallery_shortcode( array('mimetype' => 'image/jpeg', 'order' => 'ASC', 'orderby' => 'date', 'columns' => 5, 'size' => 'thumbnail', 'link' => 'attachment', 'template' => 'default')); ?>
  34. <?php echo do_shortcode('[gallery link="attachment" columns="5" order="DESC"]'); ?>
  35. <div class="clr"></div><p></p>
  36. <h3><dl class="attachments"><?php echo get_attachment_icons(); ?></dl></h3>
  37. <div class="clr"></div>
  38.  
  39. <?php endwhile; else: ?>
  40. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  41.  
  42.  
  43. <?php endif; ?>
  44. </div></div></div>
  45.  
  46. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement