How can I call certain posts by their number to place them as featured posts in specific places of my template ? I've read about sticky posts , But I have about 3 places to place my featured posts and I guess I need a loop to get posts by the number I define their.

Any HELP ?!

link|improve this question

feedback

1 Answer

<?php   

// The Query    
$query = new WP_Query( 'p=7' );

// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;

// Reset Post Data
wp_reset_postdata();
?>
link|improve this answer
I've tried the same code before but the problem is: it shows only one post, and whenever I separate multiple IDs by comma, Only the first one appears. Any suggestions ? or should I only repeat the loop according no. of posts I want ?? – Bialy May 7 '11 at 23:55
1  
Use new WP_Query( array( 'post__in' => array( 1, 2, 3 ) ) ) – Richard M May 8 '11 at 1:52
@Richard M THANK you Richard, works great ! – Bialy May 9 '11 at 11:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.