WordPress get multiple posts by id

I need to get multiple posts in wordpress by ID.

get_posts('p=34,36');

I assumed that that might work, but it only gives the first post.

Read More

I tried then to use an array:

$args = array( 'p' => array(34,36));

That delivered no results.

get_posts('p=34+36'); NO and get_posts('p=34&p=36'); Last one only

Any ideas?

Related posts

Leave a Reply

2 comments