Comment se fait-il que l'image à la une n'apparaisse pas dans mon type de publication personnalisé?
3 réponses
- votes
-
- 2012-05-11
essayez leparamètre
register_post_type
supports
:'supports' => array( 'thumbnail' )
try the
register_post_type
supports
parameter:'supports' => array( 'thumbnail' )
-
Ahhhbien sûr.Soitje le regardaistrop longtemps,soitje n'aipasencorebu assez de café.Merci Milo!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
-
Cela supprime également lapriseen charge dutitreet du contenu de l'éditeur,qui sont activéspar défaut.J'ai dû utiliser `` 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
-
N'oubliezpasnonplus d'autoriser lespost-miniaturespour votrethème comme ceci: `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
-
-
Jepense que cela répondmieux àmesbesoins que ceux demilo: DI think this suits my needs better than milo's :D
- 0
- 2017-06-27
- Martijn van Hoof
-
-
- 2015-12-08
Essayez ceci,celafonctionnepourmoi .....
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' );
J'ai le support des vignettes ajouté avec ce qui suit dansmonfunctions.php
Etje crée letype demessagepersonnalisé avec
Cependant,lorsqueje crée unnouveaumessage dans letype demessagepersonnalisé,laméta-boîte Imageen vedettene s'affichepas. J'ai égalementessayé d'utiliser untableau lors de la déclaration dutype depublicationpersonnalisé,comme suit,mais celan'apasfonctionnénonplus
Queme manque-t-il?