I have an array of post IDs contained in $postarray. I would like to print the posts corresponding to these IDs in Wordpress. The code I am using is as follows:
query_posts(array('post__in' => $postarray));
if (have_posts()) :
    while (have_posts()) : the_post();
        the_title();
        the_excerpt();
    endwhile;
endif;
Buna rağmen, döngü En son mesaj olup dizinin içerdiği mesaj yazar. Ben wordpress ben dizide arz ve sırayla bu mesaj yazdırmak sonrası kimlikleri kullanmak nasıl olabilir?