Technology Taxonomy
For ll portfolio
// Register Custom Taxonomy function technologies() { $labels = array( 'name' => _x( 'Technologies', 'Taxonomy General Name', 'll_cpt' ), 'singular_name' => _x( 'Technology', 'Taxonomy Singular Name', 'll_cpt' ), 'menu_name' => __( 'Technologies', 'll_cpt' ), 'all_items' => __( 'All Technologies', 'll_cpt' ), 'parent_item' => __( 'Parent Technology', 'll_cpt' ), 'parent_item_colon' => __( 'Parent Technology:', 'll_cpt' ), 'new_item_name' => __( 'New Technology', 'll_cpt' ), 'add_new_item' => __( 'Add New Technology', 'll_cpt' ), 'edit_item' => __( 'Edit Technology', 'll_cpt' ), 'update_item' => __( 'Update Technology', 'll_cpt' ), 'separate_items_with_commas' => __( 'Separate technologies with commas', 'll_cpt' ), 'search_items' => __( 'Search Technologies', 'll_cpt' ), 'add_or_remove_items' => __( 'Add or remove technologies', 'll_cpt' ), 'choose_from_most_used' => __( 'Choose from the most used technologies', 'll_cpt' ), 'not_found' => __( 'Not Found', 'll_cpt' ), ); $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( 'technologies', array( 'portfolio' ), $args ); } // Hook into the 'init' action add_action( 'init', 'technologies', 0 );