我想用ID数组查询多个帖子(请注意:我正在查询自定义帖子类型)。

这里是我无法使用的内容:

$myarray = array(144, 246);

$args = array(
   'post_type' => 'ai1ec_event',
   'p'      => $myarray
);
// The Query
$the_query = new WP_Query( $args );


有关如何执行此操作的任何提示?

#1 楼

请参考Codex条目以获取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 );