wordpress查询数组无效的页面

时间:2015-07-09 10:19:27

标签: php wordpress templates wordpress-theming wp-query

您好我正试图通过使用查询从wordpress中获取几页。

当我做的时候

$query= new WP_Query('page_id=5880');

一切都很好

然而,

$query = new WP_Query( array( 'post_type' => 'page', 'page_id' => array( 5880, 5840 ) ) );

什么都不产生。我错过了什么?

1 个答案:

答案 0 :(得分:1)

而不是page_id,它应该是post__in

$query = new WP_Query( array( 'post_type' => 'page', 'post__in' => array( 5880, 5840 ) ) );

请参阅https://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters