显示了特色图像URL,但未显示缩略图

时间:2014-05-31 作者:Muhammad Arslan Jamshaid

我将其他CMS的帖子添加到我的新word press网站。对于我更改的特色图片,wp_post 表格组件

post ID: 2300

Attachment in "wp_post":

ID:3400
post_type: attachment
post_mime_type: images/jpeg
post_parent: 2300
post_title: file name
post_name: fileName-in-WP-Content-upload
post_status:inherit
guid: site.com/upload/oldImages/fileName-in-WP-Content-upload.jpg

Making Featured image in "wp_postmeta"

post_id:2300
meta_key: _thmubnail_id
meta_value: 3400
现在我在帖子中没有看到特色图片,但是我可以看到图片url

echo wp_get_attachment_url( get_post_thumbnail_id(3400) );

1 个回复
SO网友:TheDeadMedic

您正在尝试显示附件本身的帖子缩略图:

wp_get_attachment_url( get_post_thumbnail_id( 3400 ) )
相反,请使用:

wp_get_attachment_url( get_post_thumbnail_id( 2300 ) )

结束

相关推荐

how to edit attachments?

在将例如文件附加到帖子时,如何在事后编辑/删除它们?在帖子编辑器中找不到任何内容。谢谢