CPT Barcos Roses Nautic
// Register Custom Post Type
function custom_post_type() {
$labels = array(
'name' => _x( 'Barcos', 'Post Type General Name', 'text_domain' ),
'singular_name' => _x( 'Barco', 'Post Type Singular Name', 'text_domain' ),
'menu_name' => __( 'Barcos', 'text_domain' ),
'name_admin_bar' => __( 'Barcos', 'text_domain' ),
'archives' => __( 'Listado de barcos', 'text_domain' ),
'attributes' => __( 'Atributos de barco', 'text_domain' ),
'parent_item_colon' => __( 'Barco superior:', 'text_domain' ),
'all_items' => __( 'Todos los barcos', 'text_domain' ),
'add_new_item' => __( 'Añadir nuevo barco', 'text_domain' ),
'add_new' => __( 'Añadir nuevo', 'text_domain' ),
'new_item' => __( 'Nuevo barco', 'text_domain' ),
'edit_item' => __( 'Editar barco', 'text_domain' ),
'update_item' => __( 'Actualizar barco', 'text_domain' ),
'view_item' => __( 'Ver barco', 'text_domain' ),
'view_items' => __( 'Ver barcos', 'text_domain' ),
'search_items' => __( 'Buscar barco', 'text_domain' ),
'not_found' => __( 'No hay barcos', 'text_domain' ),
'not_found_in_trash' => __( 'No hay barcos en la papelera', 'text_domain' ),
'featured_image' => __( 'Portada del barco', 'text_domain' ),
'set_featured_image' => __( 'Establecer portada', 'text_domain' ),
'remove_featured_image' => __( 'Eliminar portada', 'text_domain' ),
'use_featured_image' => __( 'Usar como imaegen destacada', 'text_domain' ),
'insert_into_item' => __( 'Insertar en el barco', 'text_domain' ),
'uploaded_to_this_item' => __( 'Subido a este barco', 'text_domain' ),
'items_list' => __( 'Lista de barcos', 'text_domain' ),
'items_list_navigation' => __( 'Navegación de la lista de barcos', 'text_domain' ),
'filter_items_list' => __( 'Filtrar listado de barcos', 'text_domain' ),
);
$args = array(
'label' => __( 'Barco', 'text_domain' ),
'description' => __( 'Post Type Description', 'text_domain' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', 'custom-fields' ),
'taxonomies' => array( 'category', 'post_tag' ),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-store',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => 'barcos',
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
);
register_post_type( 'post_type_barcos', $args );
}
add_action( 'init', 'custom_post_type', 0 );