Catalogo_productos
Catalogo de Productos
if ( ! function_exists('amk_productos_post_type') ) { // Register Custom Post Type function amk_productos_post_type() { $labels = array( 'name' => _x( 'Productos', 'Post Type General Name', 'amk' ), 'singular_name' => _x( 'Producto', 'Post Type Singular Name', 'amk' ), 'menu_name' => __( 'Productos', 'amk' ), 'parent_item_colon' => __( 'Superior', 'amk' ), 'all_items' => __( 'Todos', 'amk' ), 'view_item' => __( 'Ver Producto', 'amk' ), 'add_new_item' => __( 'Agregar Nuevo Producto', 'amk' ), 'add_new' => __( 'Agregar Nuevo', 'amk' ), 'edit_item' => __( 'Editar Producto ', 'amk' ), 'update_item' => __( 'Actualizar Producto', 'amk' ), 'search_items' => __( 'Buscar Producto', 'amk' ), 'not_found' => __( 'No Encontrado', 'amk' ), 'not_found_in_trash' => __( 'No hay productos en la papelera', 'amk' ), ); $args = array( 'label' => __( 'Productos', 'amk' ), 'description' => __( 'Catalogo de Productos', 'amk' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 20, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', ); register_post_type( 'Productos', $args ); } // Hook into the 'init' action add_action( 'init', 'amk_productos_post_type', 0 ); }