Come mai l'immagine in evidenza non viene visualizzata nel mio tipo di articolo personalizzato?
3 risposta
- voti
-
- 2012-05-11
provailparametro
register_post_type
supports
:'supports' => array( 'thumbnail' )
try the
register_post_type
supports
parameter:'supports' => array( 'thumbnail' )
-
Ahhh ovviamente.O lo stavofissandotroppo a lungo,o semplicementenon ho ancorapreso abbastanza caffè.Grazie 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
-
Questo rimuove ancheil supporto deltitoloe del contenuto dell'editor,che sono abilitatiperimpostazionepredefinita.Ho dovuto usare `'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
-
Inoltre,ricorda di consentireeffettivamente lepost-miniatureperiltuotemain questomodo: `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
-
-
Penso che questo si adattimeglio allemie esigenze di quelle dimilo: DI think this suits my needs better than milo's :D
- 0
- 2017-06-27
- Martijn van Hoof
-
-
- 2015-12-08
Prova questoperme funziona .....
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' );
Ho aggiuntoil supportoper leminiature con quanto seguenelmiofunctions.php
E creoiltipo dipostpersonalizzato con
Tuttavia,quando creo unnuovopostneltipo dipostpersonalizzato,ilmetabox Immaginein primopianonon viene visualizzato. Ho ancheprovato a utilizzare un array quando dichiaroiltipo dipostpersonalizzato,come segue,maneanche questo hafunzionato
Cosami manca?