在我的本地,我可以使用以下代码从帖子中获取附加的图像。但在我的实时服务器中,$ images返回一个空数组。本地和现场之间有什么区别?
$images = get_children(
array(
'post_parent' => $post_id,
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image'
)
);
由于
答案 0 :(得分:0)
但仍然很好奇是否有办法获取插入帖子的图片(但在帖子之前上传)。