Clientes
Clientes para Chimpress
// Register Custom Post Type function cpt_clientes() { $labels = array( 'name' => _x( 'Clientes', 'Post Type General Name', 'text_domain' ), 'singular_name' => _x( 'Cliente', 'Post Type Singular Name', 'text_domain' ), 'menu_name' => __( 'Clientes', 'text_domain' ), 'name_admin_bar' => __( 'Clientes', 'text_domain' ), 'parent_item_colon' => __( 'Cliente Padre:', 'text_domain' ), 'all_items' => __( 'Todos los Clientes', 'text_domain' ), 'add_new_item' => __( 'Agregar Nuevo Cliente', 'text_domain' ), 'add_new' => __( 'Agregar Nuevo', 'text_domain' ), 'new_item' => __( 'Nuevo Cliente', 'text_domain' ), 'edit_item' => __( 'Editar Cliente', 'text_domain' ), 'update_item' => __( 'Actualizar Cliente', 'text_domain' ), 'view_item' => __( 'Ver Cliente', 'text_domain' ), 'search_items' => __( 'Buscar Cliente', 'text_domain' ), 'not_found' => __( 'Clientes no encontrados', 'text_domain' ), 'not_found_in_trash' => __( 'Clientes no encontrados en la papelera', 'text_domain' ), ); $args = array( 'label' => __( 'cliente', 'text_domain' ), 'description' => __( 'Clientes for Chimpress', 'text_domain' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail', ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 20, 'menu_icon' => 'dashicons-universal-access', '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' => 'page', ); register_post_type( 'cliente', $args ); } // Hook into the 'init' action add_action( 'init', 'cpt_clientes', 0 );