Changeset 10566
- Timestamp:
- 02/12/2009 10:05:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/menu.php
r10557 r10566 36 36 $i = 15; 37 37 foreach ( $wp_taxonomies as $tax ) { 38 if ( 'category' == $tax->name || 'link_category' == $tax->name)38 if ( $tax->hierarchical || ! in_array('post', (array) $tax->object_type, true) ) 39 39 continue; 40 40 … … 43 43 } 44 44 45 $submenu['edit.php'][ 20] = array( __('Categories'), 'manage_categories', 'categories.php' );45 $submenu['edit.php'][50] = array( __('Categories'), 'manage_categories', 'categories.php' ); 46 46 47 47 $menu[10] = array( __('Media'), 'upload_files', 'upload.php', '', 'menu-top', 'menu-media', 'div' );
Note: See TracChangeset
for help on using the changeset viewer.