Wordpress:使用'post_parent'检索附加到帖子的图像

时间:2013-03-18 14:52:04

标签: wordpress

我最近将我的一些网站升级到Wordpress 3.5.1,并注意到您无法再使用get_posts()函数和'post_parent'属性来获取已附加到的帖子一个特定的帖子。似乎最新的更新不再在数据库中附加带有帖子ID的post_parent字段。

以前,可以使用get_posts();

获取附加到帖子的图像
$args = array(
    'post_type' => 'attachment',
    'post_parent' => $post->ID
);    
$thumbnails = get_posts($args);

但是,由于post_parent不再附加ID,因此不起作用。

我还应该补充说,在“特色图像”元框中设置图像时会发生这种情况。

当我尝试使用title =“”属性附加图像时,这一切都开始了,但我发现不再有这样做了。

1 个答案:

答案 0 :(得分:0)

如果您需要附加到页面的图像,为什么不使用get_the_post_thumbnail()

请参阅codex here中的此方法。