Ho questo tipo di post personalizzato:
function create_posttype() {
register_post_type( 'companies',
array(
'labels' => array(
'name' => __( 'شرکتهای عضو' ),
'singular_name' => __( 'شرکت' )
),
'supports' => array('title', 'editor', 'custom-fields', 'excerpt', 'thumbnail'),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'companies'),
)
);
}
add_action( 'init', 'create_posttype' );
Che mostra l'editor classico nell'area di amministrazione di WordPress. Ho provato a sostituire "editor" con "gutenberg" nell'array di supporti che non funziona. Ho anche aggiunto questo codice alla mia funzione come suggerito qui :
add_filter('gutenberg_can_edit_post_type', 'prefix_disable_gutenberg');
function prefix_disable_gutenberg($current_status, $post_type)
{
if ($post_type === 'companies') return true;
return $current_status;
}
Come posso avere un editor Gutenberg sul mio tipo di post personalizzato?