Repositorio Bibliografía Calle
Base de custom type
if ( ! function_exists('bc_repositorio') ) { // Register Custom Post Type function bc_repositorio() { $labels = array( 'name' => 'Documentos', 'singular_name' => 'Documento', 'menu_name' => 'Tipos de post', 'name_admin_bar' => 'Tipo de post', 'archives' => 'Archivo de ítems', 'attributes' => 'Atributos de ítem', 'parent_item_colon' => 'Ítem padres:', 'all_items' => 'Todos los ítems', 'add_new_item' => 'Agregar nuevo ítem', 'add_new' => 'Añadir nuevo', 'new_item' => 'Nuevo ítem', 'edit_item' => 'Editar ítem', 'update_item' => 'Actualizar ítem', 'view_item' => 'Ver ítem', 'view_items' => 'Ver ítems', 'search_items' => 'Buscar ítem', 'not_found' => 'No encontrado', 'not_found_in_trash' => 'No encontrado en Papelera', 'featured_image' => 'Imagen destacada', 'set_featured_image' => 'Configurar imagen destacada', 'remove_featured_image' => 'Remover imagen destacada', 'use_featured_image' => 'Usar como imagen destacada', 'insert_into_item' => 'Insertar dentro de ítem', 'uploaded_to_this_item' => 'Cargar a este ítem', 'items_list' => 'Lista de ítems', 'items_list_navigation' => 'Lista de navegación de ítems', 'filter_items_list' => 'Filtro de lista de ítems', ); $args = array( 'label' => 'Documento', 'description' => 'Esta es la sección para almacenar escritos vinculados al problema social de la situación de calle.', 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'comments', 'trackbacks', 'revisions', 'custom-fields', 'page-attributes', 'post-formats' ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-book', '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' => 'post', ); register_post_type( 'documentos', $args ); } add_action( 'init', 'bc_repositorio', 0 ); }