Answers:
any
应该检索任何类型:
$args = array(
'p' => 42, // ID of a page, post, or custom type
'post_type' => 'any'
);
$my_posts = new WP_Query($args);
请注意any
文档中的描述:
'any'-检索除修订和'exclude_from_search'设置为true的类型以外的任何类型。
有关更多信息,请参阅WP_Query的文档。
$query = new WP_Query( array( 'post_type' => 'any', 'post__in' => array( 2, 5, 12, 14, 20 ) ) );
您可以使用postTypes = page,post,any;