Создание пользовательского типа сообщения с пользовательской категорией создает черновики вместо прикрепления категории - PullRequest
0 голосов
/ 02 марта 2020

Это мой код, и я не могу найти, что я сделал не так, я приложу и изображение введите описание изображения здесь :

//  Register Custom Post Type

функция clickapps_post_type () {

$labels = array(
    'name'                  => _x( 'Pacientes', 'Post Type General Name', 'text_domain' ),
    'singular_name'         => _x( 'Paciente', 'Post Type Singular Name', 'text_domain' ),
    'menu_name'             => __( 'Historial Médico', 'text_domain' ),
    'name_admin_bar'        => __( 'Hostorial Médico', 'text_domain' ),
    'archives'              => __( 'Archivos', 'text_domain' ),
    'attributes'            => __( 'Atributos', 'text_domain' ),
    'parent_item_colon'     => __( 'Superior:', 'text_domain' ),
    'all_items'             => __( 'Todos', 'text_domain' ),
    'add_new_item'          => __( 'Agrega nuevo paciente', 'text_domain' ),
    'add_new'               => __( 'Agrega nuevo', 'text_domain' ),
    'new_item'              => __( 'Nuevo', 'text_domain' ),
    'edit_item'             => __( 'Editar', 'text_domain' ),
    'update_item'           => __( 'Actualizar', 'text_domain' ),
    'view_item'             => __( 'Ver historial', 'text_domain' ),
    'view_items'            => __( 'Ver historiales', 'text_domain' ),
    'search_items'          => __( 'Buscar', 'text_domain' ),
    'not_found'             => __( 'No encontrado', 'text_domain' ),
    'not_found_in_trash'    => __( 'No encontrado en reciclaje', 'text_domain' ),
    'featured_image'        => __( 'Imagen Destacada', 'text_domain' ),
    'set_featured_image'    => __( 'Establecer Imagen Destacada', 'text_domain' ),
    'remove_featured_image' => __( 'Remover Imagen Destacada', 'text_domain' ),
    'use_featured_image'    => __( 'Usar como Imagen Destacada', 'text_domain' ),
    'insert_into_item'      => __( 'Insertar', 'text_domain' ),
    'uploaded_to_this_item' => __( 'Cargado', 'text_domain' ),
    'items_list'            => __( 'Lista de historiales', 'text_domain' ),
    'items_list_navigation' => __( 'Lista de historiales', 'text_domain' ),
    'filter_items_list'     => __( 'Filtrar lista de historiales', 'text_domain' ),
);
$rewrite = array(
    'slug'                  => 'paciente',
    'with_front'            => true,
    'pages'                 => true,
    'feeds'                 => true,
);
$args = array(
    'label'                 => __( 'Paciente', 'text_domain' ),
    'description'           => __( 'Historial Médico', 'text_domain' ),
    'labels'                => $labels,
    'supports'              => array( 'title', 'editor', 'thumbnail', 'comments', 'custom-fields' ),
    'taxonomies'            => array( 'medical_tags', ' medical_category' ),
    'hierarchical'          => false,
    'public'                => true,
    'show_ui'               => true,
    'show_in_menu'          => true,
    'menu_position'         => 5,
    'menu_icon'             => 'dashicons-id',
    'show_in_admin_bar'     => true,
    'show_in_nav_menus'     => true,
    'can_export'            => true,
    'has_archive'           => true,
    'exclude_from_search'   => false,
    'publicly_queryable'    => true,
    'rewrite'               => $rewrite,
    'capability_type'       => 'post',
    'show_in_rest'          => true,
    'rest_base'             => 'jean/rest_route',
);
register_post_type( 'clickapps_patients', $args );

} add_action ('init', 'clickapps_post_type', 0);

// Register Custom Tags

функция clickapps_tags () {

$labels = array(
    'name'                       => _x( 'Msdical Tags', 'Taxonomy General Name', 'text_domain' ),
    'singular_name'              => _x( 'Medical Tag', 'Taxonomy Singular Name', 'text_domain' ),
    'menu_name'                  => __( 'Medical Tags', 'text_domain' ),
    'all_items'                  => __( 'All Tags', 'text_domain' ),
    'parent_item'                => __( 'Parent Tag', 'text_domain' ),
    'parent_item_colon'          => __( 'Parent Tag:', 'text_domain' ),
    'new_item_name'              => __( 'New Tag Name', 'text_domain' ),
    'add_new_item'               => __( 'Add New Tag', 'text_domain' ),
    'edit_item'                  => __( 'Edit Tag', 'text_domain' ),
    'update_item'                => __( 'Update Tag', 'text_domain' ),
    'view_item'                  => __( 'View Tag', 'text_domain' ),
    'separate_items_with_commas' => __( 'Separate Tags with commas', 'text_domain' ),
    'add_or_remove_items'        => __( 'Add or remove Tags', 'text_domain' ),
    'choose_from_most_used'      => __( 'Choose from the most used', 'text_domain' ),
    'popular_items'              => __( 'Popular Tags', 'text_domain' ),
    'search_items'               => __( 'Search Tags', 'text_domain' ),
    'not_found'                  => __( 'Not Found', 'text_domain' ),
    'no_terms'                   => __( 'No Tags', 'text_domain' ),
    'items_list'                 => __( 'Tags list', 'text_domain' ),
    'items_list_navigation'      => __( 'Tags list navigation', 'text_domain' ),
);
$args = array(
    'labels'                     => $labels,
    'hierarchical'               => false,
    'public'                     => true,
    'show_ui'                    => true,
    'show_admin_column'          => true,
    'show_in_nav_menus'          => true,
    'show_tagcloud'              => true,
    'show_in_rest'               => true,
    'rest_base'                  => 'jean/rest_route',
);
register_taxonomy( 'medical_tags', array( 'clickapps_patients' ), $args );

} add_action ('init', ' clickapps_tags ', 0);

   // Register Custom Category

функция clickapps_categories () {

$labels = array(
    'name'                       => _x( 'Msdical Categories', 'Taxonomy General Name', 'text_domain' ),
    'singular_name'              => _x( 'Medical Category', 'Taxonomy Singular Name', 'text_domain' ),
    'menu_name'                  => __( 'Medical Categories', 'text_domain' ),
    'all_items'                  => __( 'All Categories', 'text_domain' ),
    'parent_item'                => __( 'Parent Category', 'text_domain' ),
    'parent_item_colon'          => __( 'Parent Category:', 'text_domain' ),
    'new_item_name'              => __( 'New Category Name', 'text_domain' ),
    'add_new_item'               => __( 'Add New Category', 'text_domain' ),
    'edit_item'                  => __( 'Edit Category', 'text_domain' ),
    'update_item'                => __( 'Update Category', 'text_domain' ),
    'view_item'                  => __( 'View Category', 'text_domain' ),
    'separate_items_with_commas' => __( 'Separate Categories with commas', 'text_domain' ),
    'add_or_remove_items'        => __( 'Add or remove Categories', 'text_domain' ),
    'choose_from_most_used'      => __( 'Choose from the most used', 'text_domain' ),
    'popular_items'              => __( 'Popular Categories', 'text_domain' ),
    'search_items'               => __( 'Search Categories', 'text_domain' ),
    'not_found'                  => __( 'Not Found', 'text_domain' ),
    'no_terms'                   => __( 'No Categories', 'text_domain' ),
    'items_list'                 => __( 'Categories list', 'text_domain' ),
    'items_list_navigation'      => __( 'Categories list navigation', 'text_domain' ),
);
$args = array(
    'labels'                     => $labels,
    'hierarchical'               => true,
    'public'                     => true,
    'show_ui'                    => true,
    'show_admin_column'          => true,
    'show_in_nav_menus'          => true,
    'show_tagcloud'              => true,
    'show_in_rest'               => true,
    'rest_base'                  => 'jean/rest_route',
);
register_taxonomy( 'medical_category', array( 'clickapps_patients' ), $args );

} add_action (' init ',' clickapps_categories ', 0);

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...