Answers:
请参考Codex条目中的post / page参数WP_Query()
。
该'p'
参数采用单个帖子ID(整数)。
要传递一系列帖子,您需要使用'post__in'
:
$myarray = array(144, 246);
$args = array(
'post_type' => 'ai1ec_event',
'post__in' => $myarray
);
// The Query
$the_query = new WP_Query( $args );