我无法从Wordpress中的帖子中获取附加图像

时间:2014-09-25 00:37:28

标签: wordpress wordpress-plugin wordpress-theming

在我的本地,我可以使用以下代码从帖子中获取附加的图像。但在我的实时服务器中,$ images返回一个空数组。本地和现场之间有什么区别?

$images = get_children(
    array(
        'post_parent' => $post_id,
        'post_status' => 'inherit',
        'post_type' => 'attachment',
        'post_mime_type' => 'image'
        )
);

由于

1 个答案:

答案 0 :(得分:0)

好的,我找到了答案.. 只有当我将图像直接“上传”到该帖子时,我才能获得带有该代码的图像。

但仍然很好奇是否有办法获取插入帖子的图片(但在帖子之前上传)。