有一个帖子ID数组,我想用它来加载这些特定的帖子。我使用的是get\\u posts(),但在使用“post\\u in”参数的数组时出现了一些问题。
以下是数组的内容:
阵列([0]=>44376[1]=>44371[2]=>44387[3]=>44395[4]=>44334)
下面是PHP代码:
$args = array(
\'post__in\' => $post_ids;
);
$posts = get_posts($args);
我尝试使用explode()转换数组,但没有成功。有什么建议吗?
最合适的回答,由SO网友:birgire 整理而成
请尝试以下操作:
$args = array(
\'post__in\' => $post_ids,
);
$posts = get_posts( $args );
Lesson learned:
始终检查PHP脚本错误;-)
例如,检查this Codex page 调试时。