如果我有一个id数组,我如何获取帖子内容。基本上,如果你提供id,我有一个函数可以获取帖子内容。但如果我有一个id数组,它就不起作用。我的函数是:
function get_post_by_id($id){
$post_content = get_post($id);
$content=$post_content->post_content;
return $content;
}
现在,如果我给这个函数传递一个id,它就会工作。例如:
$last_post = get_post_by_id(83);
print_r($last_post);
我该怎么去
post_content
如果我有一个数组
ID\'s
.类似于:
$last_post = get_post_by_id(array(83,80,92));
现在这样不行了。请帮忙!
最合适的回答,由SO网友:Jeffrey Carandang 整理而成
如果第一次查询成功,可以尝试以下操作:
function get_post_by_id($id){
$content = array();
foreach ($id as $key => $value) {
$post_content = get_post($value);
$content[]=$post_content->post_content;
}
return $content;
}
干杯,笨蛋