【问题标题】:WordPress - Missing Featured Image Thumbnail in Posts PageWordPress - 帖子页面中缺少特色图片缩略图
【发布时间】:2019-03-22 19:17:58
【问题描述】:

我在自定义帖子类型中添加了特色图片,它在前端正确显示,但在自定义帖子类型上,特色图片缩略图根本不显示。

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

谢谢!

【问题讨论】:

  • 您是否在functions.php 中注册了您的帖子类型?你能分享你的代码吗?

标签: wordpress


【解决方案1】:

只需将以下代码添加到您的活动主题的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');
}

【讨论】:

    猜你喜欢
    • 2016-11-21
    • 2011-11-01
    • 2013-03-28
    • 1970-01-01
    • 2011-03-15
    • 1970-01-01
    • 2011-03-11
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多