Guest User

Untitled

a guest
Apr 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <?php query_posts('showposts=5'); ?>
  2. <?php while (have_posts()) : the_post(); ?>
  3.  
  4. <div class="posts">
  5. <div class="post_title"><?php the_title(); ?></div>
  6. <span class="date"><?php the_time('jS F Y') ?></span>
  7. <span class="post_content"><?php the_content(__('(more�)')); ?></span>
  8.  
  9. <div class="meta"><?php _e("Filed under:"); ?><?php the_category(',') ?> &#8212; <?php the_tags(__('Tags: '), ', ', ' &#8212; '); ?><?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
  10. </div>
  11. <?php endwhile;?>
Add Comment
Please, Sign In to add comment