Advertisement
isaac_feldman

Untitled

May 29th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1.  
  2. <?php
  3. /*
  4. Template Name: Category
  5. */
  6. ?>
  7. <?php get_header(); ?>
  8.  
  9. <div id="main">
  10. <h1 class="cat_title"><?php single_cat_title(); ?></h1>
  11. <span class="banner">What to eat while pregnant? What should you avoid, and why? You probably have many questions about pregnancy diet... But you came to the right place. All the answers you were looking for are right here, in Diet when Pregnant's Articles Page.</span>
  12.  
  13.  
  14.  
  15.  
  16.  
  17. <?php query_posts( array ( 'category_name' => 'articles', 'posts_per_page' => 4 ));
  18. if ( have_posts() ) : while ( have_posts() ) : the_post();?>
  19.  
  20.  
  21. <?php
  22.  
  23. global $more;
  24. $more = 0;
  25. echo '<div class="post">';
  26.  
  27. echo '<h2>';
  28. the_title();
  29. echo '</h2>';
  30. echo '<span>';
  31. the_content('Read more...');
  32. echo '</span>';
  33. echo '</div>';
  34.  
  35. endwhile; endif;
  36.  
  37. wp_reset_query(); ?>
  38.  
  39.  
  40.  
  41.  
  42. </div><!--END main-->
  43.  
  44. <?php include (TEMPLATEPATH . '/sidebar1.php'); ?>
  45. <?php include (TEMPLATEPATH . '/sidebar2.php'); ?>
  46.  
  47. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement