WordPress-帖子页面中缺少特色图片缩略图

时间:2018-10-18 02:48:59

标签: wordpress

我在自定义帖子类型中添加了特色图片,并且该图片正确显示在前端,但是在自定义帖子类型中,特色图片缩略图根本没有显示。

enter image description here

如您所见,已读取删除特色图片按钮,但是缩略图不可用。我在PHP代码中使用了the_post_thumbnail()来显示精选图片,该图片可以正常工作,但是我不知道为什么缺少缩略图。有人知道为什么会这样吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

只需将以下代码添加到活动主题的function.php

add_action( 'after_setup_theme', 'custom_featured_image_backend' );
function custom_featured_image_backend() {
    add_theme_support( 'post-thumbnails','your_custom_post_type_name');
}