Tengo este tipo de publicación personalizada:
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' );
Que muestra el editor clásico en el área de administración de WordPress. Traté de reemplazar 'editor' con 'gutenberg' en la matriz de soportes que no funciona. También agregué este código a mi función como se sugiere aquí :
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;
}
¿Cómo puedo tener un editor Gutenberg en mi tipo de publicación personalizada?