我想通过使用 ID 数组来检索帖子。我有这个数组
Array ( [0] => 40 [1] => 25 )
这是我的代码:
$query = WP_Query(array("p" => myCourseId()));
但它不起作用。有什么错误?
新代码
$ids = myCourseId();
// The Loop
$query = WP_Query(array("post__in" => $ids));
myCoureID() 像我写的第一个一样返回一个数组