最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How check that there is post thumbnail feature image or not on wordpress?

programmeradmin2浏览0评论

On my wordpress site ,
I have some post that all of them have post thumbnail, but their post thumbnail removed from host and now when i want to load them on site , there is no image for loading to user ,
I want to know how can i set that if feature image is removed, show default image?
thanks

On my wordpress site ,
I have some post that all of them have post thumbnail, but their post thumbnail removed from host and now when i want to load them on site , there is no image for loading to user ,
I want to know how can i set that if feature image is removed, show default image?
thanks

Share Improve this question asked Jun 2, 2019 at 23:39 Amin ArjmandAmin Arjmand 1134 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

The main problem here is what exactly was removed. If only thumbnails, then you can always regenerate them and everything should work OK.

If all files are missing, then you can check if attached file is missing using this code:

if ( file_exists( get_attached_file ( get_post_thumbnail_id( $post_id ) ) ) {
    // file exists
} else {
    // file doesn’t exist
}

You can also use wp_attachment_is_image function for that:

if ( wp_attachment_is_image ( get_post_thumbnail_id( $post_id ) ) {
    // file exists
} else {
    // file doesn’t exist
}
发布评论

评论列表(0)

  1. 暂无评论