To pass an array of posts, you need to use 'post__in':
1 2 3 4 5 6 7 8 9 | $myarray = array(144, 246); $args = array( 'post_type' => 'ai1ec_event', 'post__in' => $myarray ); // The Query $the_query = new WP_Query( $args ); |
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.