UP. The same problem.
I need to display certain posts on my page.
I used function query_posts() with post__in, Like this:
query_posts(array('post__in' => array (208, 232, 159, 341)));
if (have_posts()) : while (have_posts()) : the_post();
But it doesn’t work. The result is 10 recent posts.
Can someone help? Are there any WordPress experts?