You can use get_posts()
as it takes the same arguments as WP_Query. To pass it the IDs, use 'post__in'
=> array(43,23,65) (only takes arrays).
Something like:
1 2 3 4 5 6 7 8 9 | $args = array( 'post__in' => array(43,23,65) ); $posts = get_posts($args); foreach ($posts as $p) : //post! endforeach; |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.