Advertisement
photeck

wordpress

Mar 26th, 2011
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.01 KB | None | 0 0
  1. <div class="content">
  2.             <?php query_posts("cat=4"); ?>
  3.                 <?php if(have_posts()) : while (have_posts()) : the_post(); ?>
  4.                 <div class="entry-title">
  5.                     <?php the_title(); ?>
  6.                 </div>
  7.                 <div class="entry-date">
  8.                     <?php the_time('F'); ?>
  9.                     <?php the_time('d'); ?>,
  10.                     <?php the_time('Y'); ?>
  11.                 </div>
  12.                 <div class="entry">
  13.                     <?php the_content(__('More...')); ?>
  14.                     <?php wp_link_pages(); ?>
  15.                 </div>
  16.                 <div class="comments">Posted By: <span class="meta"><?php the_author(); ?></span> | Under: <span class="meta"><?php foreach((get_the_category()) as $category) {echo $category->cat_name . ' ';} ?></span>
  17.                 <hr />
  18.                 </div>
  19.                 <?php endwhile; else: ?>
  20.                 <p><?php e_('Sorry, no posts matched your criteria'); ?></p>
  21.                 <?php endif; ?>
  22.                 <?php wp_reset_query(); ?>
  23.             </div>
  24.             <div id="box">
  25.                 <div class="leftbox">
  26.                     <h3>Previous Posts</h3>
  27.                     <ul>
  28.                     <?php get_archives('postbypost', 5); ?>
  29.                     </ul>
  30.                 </div>
  31.                 <div class="clear"></div>
  32.             </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement