Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <?php
  2. $ids = array(1624, 1428);
  3. ?>
  4.  
  5. <?php query_posts( array('post_type' => 'post', 'posts_per_page' => 3, 'post__in' => $ids));
  6. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  7. <div class="singlepost">
  8. <div <?php post_class(); ?> id="post-main-<?php the_ID(); ?>">
  9. <li class="homepost clearfix" id="post-main-<?php the_ID(); ?>">
  10. <div class="entry">
  11. <a href="<?php the_permalink() ?>" rel="<?php _e("bookmark"); ?>" title="<?php _e("Permanent Link to"); ?> <?php the_title(); ?>"><?php include (TEMPLATEPATH . '/post-thumb.php'); ?></a>
  12. <h3 class="post-title"><a href="<?php the_permalink() ?>" rel="<?php _e("bookmark"); ?>" title="<?php _e("Permanent Link to"); ?> <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  13. <?php the_excerpt ();?>
  14. <p class="bottom">
  15. <?php the_time( get_option( 'date_format' ) ); ?> | <a href="<?php comments_link(); ?>">
  16. <?php comments_number('0 comments','1 comment','% comments'); ?></a> | <a href="<?php the_permalink() ?>" rel="<?php _e("bookmark"); ?>" title="<?php _e("Permanent Link to"); ?>
  17. <?php the_title(); ?>"><?php _e("View Post"); ?></a>
  18. </p>
  19. </div>
  20. </li>
  21. </div>
  22. </div>
  23. <?php endwhile; endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement