Noticias
Noticias crispol
// Register Custom Post Type function Noticias() { $labels = array( 'name' => _x( 'Noticias', 'Post Type General Name', 'text_domain' ), 'singular_name' => _x( 'Noticia', 'Post Type Singular Name', 'text_domain' ), 'menu_name' => __( 'Noticias', 'text_domain' ), 'name_admin_bar' => __( 'Noticias', 'text_domain' ), 'archives' => __( 'Archivo noticias', 'text_domain' ), 'attributes' => __( 'Atributos de noticias', 'text_domain' ), 'parent_item_colon' => __( 'Nivel superior de noticia', 'text_domain' ), 'all_items' => __( 'Todas las noticias', 'text_domain' ), 'add_new_item' => __( 'Añadir noticia', 'text_domain' ), 'add_new' => __( 'Añadir', 'text_domain' ), 'new_item' => __( 'Nueva noticia', 'text_domain' ), 'edit_item' => __( 'Editar noticia', 'text_domain' ), 'update_item' => __( 'Actualizar noticia', 'text_domain' ), 'view_item' => __( 'Ver noticia', 'text_domain' ), 'view_items' => __( 'Ver noticias', 'text_domain' ), 'search_items' => __( 'Buscar noticia', 'text_domain' ), 'not_found' => __( 'No encontrado', 'text_domain' ), 'not_found_in_trash' => __( 'No encontrado en la papelera', 'text_domain' ), 'featured_image' => __( 'Imagen destacada', 'text_domain' ), 'set_featured_image' => __( 'Elegir 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 en noticia', 'text_domain' ), 'uploaded_to_this_item' => __( 'Actualizar en esta noticia', 'text_domain' ), 'items_list' => __( 'Lista de noticias', 'text_domain' ), 'items_list_navigation' => __( 'Navegación en lista de noticias', 'text_domain' ), 'filter_items_list' => __( 'Filtrar lista de noticias', 'text_domain' ), ); $args = array( 'label' => __( 'Noticia', 'text_domain' ), 'description' => __( 'Noticias CRISPOL', 'text_domain' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', 'post-formats' ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-format-aside', 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => 'noticia', 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'post', 'show_in_rest' => true, ); register_post_type( 'noticia', $args ); } add_action( 'init', 'Noticias', 0 );