• How can I display posts that have certain IDs? For example I need to display posts with an ID 1, 2, 3, 4, 5, and 6 in my page template. Is it possible?

Viewing 2 replies - 1 through 2 (of 2 total)
  • I Googled a bit as I never did this and you should use something like

    query_posts(array('post__in' => array(5,12,2,14,7));

    But this code needs some fixing…

    Thread Starter levani01

    (@levani01)

    I have also found that code but it really needs some fixing. One of the big problem is pagination that I can’t make working despite several hours trying. Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Query posts by certain IDs’ is closed to new replies.