Site icon Hip-Hop Website Design and Development

How to use get_posts to filter against a single post id?

How do I use get_posts to filter against a single post id? (I don’t want to use get_post because am using this in another function that could take other parameters and should return an array). The following methods are not working:

get_posts(array(
    'ID' => 12345,
));

get_posts(array(
    'p' => 12345,
));

get_posts(array(
    'post' => 12345,
));

get_posts(array(
    'post__in' => array(12345),
));