Taxonomy: Site Section
Taxonomy for pages used to organize groups of pages into self-contained microsites
if ( ! function_exists( 'ct_sections' ) ) { // Register Custom Taxonomy function ct_sections() { $labels = array( 'name' => _x( 'Sections', 'Taxonomy General Name', 'text_domain' ), 'singular_name' => _x( 'Section', 'Taxonomy Singular Name', 'text_domain' ), 'menu_name' => __( 'Section', 'text_domain' ), 'all_items' => __( 'All Sections', 'text_domain' ), 'parent_item' => __( 'Parent Section', 'text_domain' ), 'parent_item_colon' => __( 'Parent Section:', 'text_domain' ), 'new_item_name' => __( 'New Section Name', 'text_domain' ), 'add_new_item' => __( 'Add New Section', 'text_domain' ), 'edit_item' => __( 'Edit Section', 'text_domain' ), 'update_item' => __( 'Update Section', 'text_domain' ), 'view_item' => __( 'View Section', 'text_domain' ), 'separate_items_with_commas' => __( 'Separate sections with commas', 'text_domain' ), 'add_or_remove_items' => __( 'Add or remove sections', 'text_domain' ), 'choose_from_most_used' => __( 'Choose from the most used', 'text_domain' ), 'popular_items' => __( 'Popular Sections', 'text_domain' ), 'search_items' => __( 'Search Sections', 'text_domain' ), 'not_found' => __( 'Not Found', 'text_domain' ), ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => false, 'show_tagcloud' => false, 'rewrite' => false, ); register_taxonomy( 'sections', array( 'page' ), $args ); } // Hook into the 'init' action add_action( 'init', 'ct_sections', 0 ); }