From 3ee8135baa838e8631114aa01ae3f61d60e62812 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Wed, 11 Sep 2013 00:08:04 +0000 Subject: [PATCH] Don't call `sanitize_title_with_dashes( $taxonomy )` in `register_taxonomy()` unless `$args['rewrite']['slug']` is empty. Props SergeyBiryukov. Fixes #23668. git-svn-id: https://develop.svn.wordpress.org/trunk@25335 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index 6ddfeb00a2..fe30c82fa7 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -352,8 +352,9 @@ function register_taxonomy( $taxonomy, $object_type, $args = array() ) { } if ( false !== $args['rewrite'] && ( is_admin() || '' != get_option( 'permalink_structure' ) ) ) { + if ( empty( $args['rewrite']['slug'] ) ) + $args['rewrite']['slug'] = sanitize_title_with_dashes( $taxonomy ); $args['rewrite'] = wp_parse_args( $args['rewrite'], array( - 'slug' => sanitize_title_with_dashes( $taxonomy ), 'with_front' => true, 'hierarchical' => false, 'ep_mask' => EP_NONE,