Project Types
For Give a Book
// Register Custom Taxonomy function custom_taxonomy() { $labels = array( 'name' => 'Project types', 'singular_name' => 'Project type', 'menu_name' => 'Project type', 'all_items' => 'All Items', 'parent_item' => 'Parent Item', 'parent_item_colon' => 'Parent Item:', 'new_item_name' => 'New project type', 'add_new_item' => 'Add project type', 'edit_item' => 'Edit project type', 'update_item' => 'Update project type', 'view_item' => 'View project type', 'separate_items_with_commas' => 'Separate project types with commas', 'add_or_remove_items' => 'Add or remove project types', 'choose_from_most_used' => 'Choose from the most used', 'popular_items' => 'Popular project types', 'search_items' => 'Search project types', 'not_found' => 'Not Found', 'no_terms' => 'No project types', 'items_list' => 'Project types list', 'items_list_navigation' => 'Project types list navigation', ); $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( 'project_type', array( 'project' ), $args ); } add_action( 'init', 'custom_taxonomy', 0 );