カスタム投稿タイプに注目の画像が表示されないのはなぜですか?
3 回答
- 投票
-
- 2012-05-11
register_post_type
supports
パラメーターを試してください:'supports' => array( 'thumbnail' )
try the
register_post_type
supports
parameter:'supports' => array( 'thumbnail' )
-
もちろん.じっと見つめていたか、まだコーヒーが足りないかのどちらかです.ミロありがとう!Ahhh of course. Either I was staring at it for too long, or I just haven't had enough coffee yet. Thanks Milo!
- 0
- 2012-05-11
- Ryan
-
これにより、デフォルトで有効になっているタイトルとエディターコンテンツのサポートも削除されます.`'supports'=> array( 'title'、 'editor'、 'thumbnail')、`を使用する必要がありました.This also remove support of title and editor content, which are enabled by default. I had to use `'supports' => array('title', 'editor', 'thumbnail'),`.
- 6
- 2017-05-18
- amoebe
-
また、次のように、テーマにポストサムネイルを実際に許可することを忘れないでください. `add_theme_support( 'post-thumbnails');`Also, remember to actually allow post-thumbnails for your theme like this: `add_theme_support( 'post-thumbnails' );`
- 2
- 2018-03-08
- skolind
-
-
これはmiloの:Dよりも私のニーズに合っていると思いますI think this suits my needs better than milo's :D
- 0
- 2017-06-27
- Martijn van Hoof
-
-
- 2015-12-08
これを試してみてください.....
add_theme_support('post-thumbnails'); add_post_type_support( 'my_product', 'thumbnail' ); function create_post_type() { register_post_type( 'my_product', array( 'labels' => array( 'name' => __( 'Products' ), 'singular_name' => __( 'Product' ) ), 'public' => true, 'has_archive' => true ) ); } add_action( 'init', 'create_post_type' );
Try this it works for me.....
add_theme_support('post-thumbnails'); add_post_type_support( 'my_product', 'thumbnail' ); function create_post_type() { register_post_type( 'my_product', array( 'labels' => array( 'name' => __( 'Products' ), 'singular_name' => __( 'Product' ) ), 'public' => true, 'has_archive' => true ) ); } add_action( 'init', 'create_post_type' );
functions.phpに以下を追加したサムネイルサポートがあります
そして私はカスタム投稿タイプを作成します
ただし、カスタム投稿タイプで新しい投稿を作成すると、[注目の画像]メタボックスが表示されません.次のように、カスタム投稿タイプを宣言するときに配列を使用しようとしましたが、それも機能しませんでした
何が足りないのですか?