funcion con editor clasico
-
hola buenas tengo esta funcion pero no se por que wordpress al hacer los portafolios salen con el editor classico y no en gutenberg como podria hacer que fuese en gutenberg adjunto funcion `//creacion proyectos
if ( ! function_exists(‘custom_post_type_portafolio’) ) {// Register Custom Post Type
function custom_post_type_portafolio() {$labels = array(
‘name’ => _x( ‘Proyectos’, ‘Post Type General Name’, ‘text_domain’ ),
‘singular_name’ => _x( ‘Proyecto’, ‘Post Type Singular Name’, ‘text_domain’ ),
‘menu_name’ => __( ‘Portafolio’, ‘text_domain’ ),
‘name_admin_bar’ => __( ‘Portafolio’, ‘text_domain’ ),
‘archives’ => __( ‘Portafolio’, ‘text_domain’ ),
‘parent_item_colon’ => __( ‘Proyecto superior’, ‘text_domain’ ),
‘all_items’ => __( ‘Todos los proyectos’, ‘text_domain’ ),
‘add_new_item’ => __( ‘Añadir nuevo proyecto’, ‘text_domain’ ),
‘add_new’ => __( ‘Añadir nuevo Proyecto’, ‘text_domain’ ),
‘new_item’ => __( ‘Nuevo proyecto’, ‘text_domain’ ),
‘edit_item’ => __( ‘Editar proyecto’, ‘text_domain’ ),
‘update_item’ => __( ‘Actualizar proyecto’, ‘text_domain’ ),
‘view_item’ => __( ‘Ver proyecto’, ‘text_domain’ ),
‘search_items’ => __( ‘Buscar proyecto’, ‘text_domain’ ),
‘not_found’ => __( ‘Not found’, ‘text_domain’ ),
‘not_found_in_trash’ => __( ‘Not found in Trash’, ‘text_domain’ ),
‘featured_image’ => __( ‘Imagen destacada’, ‘text_domain’ ),
‘set_featured_image’ => __( ‘Añadir imagen destacada’, ‘text_domain’ ),
‘remove_featured_image’ => __( ‘Quitar Imagen destacada’, ‘text_domain’ ),
‘use_featured_image’ => __( ‘Usar como Imagen destacada’, ‘text_domain’ ),
‘insert_into_item’ => __( ‘Insert into item’, ‘text_domain’ ),
‘uploaded_to_this_item’ => __( ‘Uploaded to this item’, ‘text_domain’ ),
‘items_list’ => __( ‘Items list’, ‘text_domain’ ),
‘items_list_navigation’ => __( ‘Items list navigation’, ‘text_domain’ ),
‘filter_items_list’ => __( ‘Filter items list’, ‘text_domain’ ),
);
$args = array(
‘label’ => __( ‘Proyecto’, ‘text_domain’ ),
‘description’ => __( ‘Portafolio’, ‘text_domain’ ),
‘labels’ => $labels,
‘supports’ => array( ‘title’, ‘editor’, ‘excerpt’, ‘author’, ‘thumbnail’, ‘comments’, ‘revisions’, ‘custom-fields’, ‘post-formats’, ),
‘taxonomies’ => array( ‘category’, ‘post_tag’ ),
‘hierarchical’ => true,
‘public’ => true,
‘show_ui’ => true,
‘show_in_menu’ => true,
‘menu_position’ => 5,
‘show_in_admin_bar’ => true,
‘show_in_nav_menus’ => true,
‘can_export’ => true,
‘has_archive’ => true,
‘exclude_from_search’ => false,
‘publicly_queryable’ => true,
‘capability_type’ => ‘page’,
);
register_post_type( ‘portafolio’, $args );}
add_action( ‘init’, ‘custom_post_type_portafolio’, 0 );}
La página con la que necesito ayuda: [accede para ver el enlace]
- El debate ‘funcion con editor clasico’ está cerrado a nuevas respuestas.