Ho aggiunto il supporto per le miniature con quanto segue nel mio function.php
// Add Thumbnail Support
add_theme_support('post-thumbnails');
set_post_thumbnail_size( 140, 140, true );
E creo il tipo di post personalizzato con
// Create Custom Post Type for Work
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'custom_post',
array(
'thumbnail',
'labels' => array(
'name' => __( 'Custom' ),
'singular_name' => __( 'Custom' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'custom'),
'taxonomies' => array('category', 'post_tag')
)
);
}
Tuttavia, quando creo un nuovo post nel Tipo di post personalizzato, la meta-casella Immagine in primo piano non viene visualizzata. Ho anche provato a utilizzare un array durante la dichiarazione del tipo di post personalizzato, come segue, ma non ha funzionato neanche
// Add Thumbnail Support
add_theme_support('post-thumbnails', array ('post','work','custom_post'));
set_post_thumbnail_size( 140, 140, true );
Cosa mi sto perdendo?