Tipos de Proyecto
Taxonomia de tipos de proyecto para estudioordeyro.com.ar
if ( ! function_exists( 'mpc_tipo_proyecto' ) ) { // Register Custom Taxonomy function mpc_tipo_proyecto() { $labels = array( 'name' => _x( 'Tipos', 'Taxonomy General Name', 'mparraud_td' ), 'singular_name' => _x( 'Tipo', 'Taxonomy Singular Name', 'mparraud_td' ), 'menu_name' => __( 'Tipos', 'mparraud_td' ), 'all_items' => __( 'Todos', 'mparraud_td' ), 'parent_item' => __( 'Tipo padre', 'mparraud_td' ), 'parent_item_colon' => __( 'Parent Item:', 'mparraud_td' ), 'new_item_name' => __( 'Nuevo tipo', 'mparraud_td' ), 'add_new_item' => __( 'Agregar nuevo tipo', 'mparraud_td' ), 'edit_item' => __( 'Modifcar tipo', 'mparraud_td' ), 'update_item' => __( 'Actualizar item', 'mparraud_td' ), 'view_item' => __( 'Ver item', 'mparraud_td' ), 'separate_items_with_commas' => __( '', 'mparraud_td' ), 'add_or_remove_items' => __( 'Add or remove items', 'mparraud_td' ), 'choose_from_most_used' => __( 'Choose from the most used', 'mparraud_td' ), 'popular_items' => __( 'Popular Items', 'mparraud_td' ), 'search_items' => __( 'Search Items', 'mparraud_td' ), 'not_found' => __( 'Not Found', 'mparraud_td' ), 'no_terms' => __( 'No items', 'mparraud_td' ), 'items_list' => __( 'Items list', 'mparraud_td' ), 'items_list_navigation' => __( 'Items list navigation', 'mparraud_td' ), ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, ); register_taxonomy( 'Tipo', array( 'proyectos' ), $args ); } add_action( 'init', 'mpc_tipo_proyecto', 0 ); }