Changeset 19742
- Timestamp:
- 01/23/2012 08:10:01 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r19741 r19742 30 30 'hierarchical' => true, 31 31 'slug' => get_option('category_base') ? get_option('category_base') : 'category', 32 'with_front' => get_option('category_base') || $wp_rewrite->using_index_permalinks(),32 'with_front' => ! get_option('category_base') || $wp_rewrite->using_index_permalinks(), 33 33 'ep_mask' => EP_CATEGORIES, 34 34 ), 35 35 'post_tag' => array( 36 36 'slug' => get_option('tag_base') ? get_option('tag_base') : 'tag', 37 'with_front' => get_option('tag_base') || $wp_rewrite->using_index_permalinks(),37 'with_front' => ! get_option('tag_base') || $wp_rewrite->using_index_permalinks(), 38 38 'ep_mask' => EP_TAGS, 39 39 ),
Note: See TracChangeset
for help on using the changeset viewer.