Changeset 13083
- Timestamp:
- 02/13/2010 04:18:33 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r13010 r13083 19 19 'update_count_callback' => '_update_post_term_count', 20 20 'label' => __('Categories'), 21 'singular_label' => __('Category'), 21 22 'query_var' => false, 22 23 'rewrite' => false … … 27 28 'update_count_callback' => '_update_post_term_count', 28 29 'label' => __('Post Tags'), 30 'singular_label' => __('Post Tag'), 29 31 'query_var' => false, 30 32 'rewrite' => false … … 213 215 $args[$cap] = 'manage_categories'; 214 216 } 217 218 if ( empty($args['singular_label']) ) 219 $args['singular_label'] = $args['label']; 215 220 216 221 $args['name'] = $taxonomy;
Note: See TracChangeset
for help on using the changeset viewer.