paola md
// Register Custom Post Type
function 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' => __( 'ClickApps 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_taxonomy' ),
'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 );