简体   繁体   English

使用 Gutenberg 将缩略图添加到自定义帖子类型 Wordpress

[英]Add thumbnail to custom post type Wordpress with Gutenberg

I created a custom post type in Wordpress and I would like to add support for thumbnails.我在 Wordpress 中创建了一个自定义帖子类型,我想添加对缩略图的支持。 I have created the post type specifying support for thumbnails, but in the editing window of the post type page does not appear the option to specify a thumnail.我创建了指定支持缩略图的帖子类型,但在帖子类型页面的编辑窗口中没有出现指定缩略图的选项。

I'm using Gutenberg as an editor, with the classic editor, there's no problem.我用的是Gutenberg作为编辑器,用经典的编辑器,没有问题。 Any solution?有什么解决办法吗?

Thanks!谢谢!

First add theme_support within functions.php首先在functions.php中添加theme_support

  add_theme_support( 'post-thumbnails', array( 'custom_post_type_name' )

Then add 'editor' and 'thumbnail' to supports and make sure you have show_in_rest set to true.然后添加 'editor' 和 'thumbnail' 以支持并确保将 show_in_rest 设置为 true。

  'supports' => array( 'editor', 'thumbnail'),
  'show_in_rest' => true,

Otherwise it won't work in Gutenberg.否则它在古腾堡将不起作用。 Here is the documentation for supports:以下是支持文档:

https://codex.wordpress.org/Function_Reference/post_type_supports https://codex.wordpress.org/Function_Reference/post_type_supports

You nee to enable support for Post Thumbnails.您需要启用对发布缩略图的支持。 https://codex.wordpress.org/Post_Thumbnails https://codex.wordpress.org/Post_Thumbnails

The common way is to add常用的方法是添加

add_theme_support( 'post-thumbnails' );

in your functions.php在你的functions.php

There's a bug report regarding this issue.有一个关于这个问题的错误报告。 Kindly refer to the link Feature Image disappears only in Gutenberg with CPT.请参阅链接功能图像仅在带有 CPT 的古腾堡中消失。

As most of common solutions around the web doesn't work I will put only that sometimes themes or plugins use由于网络上的大多数常见解决方案都不起作用,我只会说有时主题或插件使用

add_theme_support( 'post-thumbnails', array( 'post', 'page', 'my_cpt_name' ) );

So it's worth to check this and add the cpt name to array.所以值得检查一下并将cpt名称添加到数组中。

在你的functions.php 中添加:

add_theme_support( 'post-thumbnails' );

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM