Outlet
Productos en Outlet para CN Menditxo
if ( ! function_exists('post_type_tienda') ) { // Register Custom Post Type function post_type_tienda() { $labels = array( 'name' => _x( 'Tiendas', 'Post Type General Name', 'cnmenditxo' ), 'singular_name' => _x( 'Tienda', 'Post Type Singular Name', 'cnmenditxo' ), 'menu_name' => __( 'Tienda', 'cnmenditxo' ), 'name_admin_bar' => __( 'Tienda', 'cnmenditxo' ), 'archives' => __( 'Articulo Tienda', 'cnmenditxo' ), 'attributes' => __( 'Atributos de Tienda', 'cnmenditxo' ), 'parent_item_colon' => __( 'Artículo Padre', 'cnmenditxo' ), 'all_items' => __( 'Todos los artículos', 'cnmenditxo' ), 'add_new_item' => __( 'Añadir nuevo artículo', 'cnmenditxo' ), 'add_new' => __( 'Añadir Nuevo', 'cnmenditxo' ), 'new_item' => __( 'Nuevo Artículo', 'cnmenditxo' ), 'edit_item' => __( 'Editar Artículo', 'cnmenditxo' ), 'update_item' => __( 'Actualizar Artículo', 'cnmenditxo' ), 'view_item' => __( 'Ver Artículo', 'cnmenditxo' ), 'view_items' => __( 'Ver Artículo', 'cnmenditxo' ), 'search_items' => __( 'Buscar Artículo', 'cnmenditxo' ), 'not_found' => __( 'No encontrado', 'cnmenditxo' ), 'not_found_in_trash' => __( 'No se encuentra en la Papelera', 'cnmenditxo' ), 'featured_image' => __( 'Imagen destacada', 'cnmenditxo' ), 'set_featured_image' => __( 'Establecer imagen destacada', 'cnmenditxo' ), 'remove_featured_image' => __( 'Eliminar imagen destacada', 'cnmenditxo' ), 'use_featured_image' => __( 'Usar como imagen destacada', 'cnmenditxo' ), 'insert_into_item' => __( 'Insertar en Artículo', 'cnmenditxo' ), 'uploaded_to_this_item' => __( 'Subir a este artículo', 'cnmenditxo' ), 'items_list' => __( 'Listado de artículos', 'cnmenditxo' ), 'items_list_navigation' => __( 'Navegación listado de artículos', 'cnmenditxo' ), 'filter_items_list' => __( 'Filtrar listado de artículos', 'cnmenditxo' ), ); $rewrite = array( 'slug' => 'tienda', 'with_front' => true, 'pages' => true, 'feeds' => true, ); $args = array( 'label' => __( 'Tienda', 'cnmenditxo' ), 'description' => __( 'Productos en Outlet de CN Menditxo', 'cnmenditxo' ), 'labels' => $labels, 'supports' => array( 'title', 'editor' ), 'taxonomies' => array( 'taxonomy_tipo_producto' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-cart', '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' => 'page', ); register_post_type( 'post_type_tienda', $args ); } add_action( 'init', 'post_type_tienda', 0 ); }