Changeset 17512 for trunk/wp-includes/taxonomy.php
- Timestamp:
- 03/09/2011 05:18:45 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/taxonomy.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r17494 r17512 16 16 */ 17 17 function create_initial_taxonomies() { 18 global $wp_rewrite; 19 18 20 register_taxonomy( 'category', 'post', array( 19 21 'hierarchical' => true, … … 23 25 'hierarchical' => true, 24 26 'slug' => get_option('category_base') ? get_option('category_base') : 'category', 25 'with_front' => false) : false,27 'with_front' => ( get_option('category_base') && ! $wp_rewrite->using_index_permalinks() ) ? false : true ) : false, 26 28 'public' => true, 27 29 'show_ui' => true, … … 35 37 'rewrite' => did_action( 'init' ) ? array( 36 38 'slug' => get_option('tag_base') ? get_option('tag_base') : 'tag', 37 'with_front' => false) : false,39 'with_front' => ( get_option('category_base') && ! $wp_rewrite->using_index_permalinks() ) ? false : true ) : false, 38 40 'public' => true, 39 41 'show_ui' => true, … … 330 332 331 333 $wp_rewrite->add_rewrite_tag("%$taxonomy%", $tag, $args['query_var'] ? "{$args['query_var']}=" : "taxonomy=$taxonomy&term="); 332 $wp_rewrite->add_permastruct($taxonomy, "{$ wp_rewrite->root}{$args['rewrite']['slug']}/%$taxonomy%", $args['rewrite']['with_front']);334 $wp_rewrite->add_permastruct($taxonomy, "{$args['rewrite']['slug']}/%$taxonomy%", $args['rewrite']['with_front']); 333 335 } 334 336
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)