wp/wp-admin/options-permalink.php
changeset 7 cf61fcea0001
parent 5 5e2f62d02dcd
child 9 177826044cd9
equal deleted inserted replaced
6:490d5cc509ed 7:cf61fcea0001
     8 
     8 
     9 /** WordPress Administration Bootstrap */
     9 /** WordPress Administration Bootstrap */
    10 require_once( dirname( __FILE__ ) . '/admin.php' );
    10 require_once( dirname( __FILE__ ) . '/admin.php' );
    11 
    11 
    12 if ( ! current_user_can( 'manage_options' ) )
    12 if ( ! current_user_can( 'manage_options' ) )
    13 	wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
    13 	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
    14 
    14 
    15 $title = __('Permalink Settings');
    15 $title = __('Permalink Settings');
    16 $parent_file = 'options-general.php';
    16 $parent_file = 'options-general.php';
    17 
    17 
    18 get_current_screen()->add_help_tab( array(
    18 get_current_screen()->add_help_tab( array(
    19 	'id'      => 'overview',
    19 	'id'      => 'overview',
    20 	'title'   => __('Overview'),
    20 	'title'   => __('Overview'),
    21 	'content' => '<p>' . __('Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change &#8212; hence the name permalink.') . '</p>' .
    21 	'content' => '<p>' . __('Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change &#8212; hence the name permalink.') . '</p>' .
    22 		'<p>' . __('This screen allows you to choose your default permalink structure. You can choose from common settings or create custom URL structures.') . '</p>' .
    22 		'<p>' . __( 'This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.' ) . '</p>' .
    23 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    23 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    24 ) );
    24 ) );
    25 
    25 
    26 get_current_screen()->add_help_tab( array(
    26 get_current_screen()->add_help_tab( array(
    27 	'id'      => 'common-settings',
    27 	'id'      => 'permalink-settings',
    28 	'title'   => __('Common Settings'),
    28 	'title'   => __('Permalink Settings'),
    29 	'content' => '<p>' . __('Many people choose to use &#8220;pretty permalinks,&#8221; URLs that contain useful information such as the post title rather than generic post ID numbers. You can choose from any of the permalink formats under Common Settings, or can craft your own if you select Custom Structure.') . '</p>' .
    29 	'content' => '<p>' . __( 'Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.' ) . '</p>' .
    30 		'<p>' . __('If you pick an option other than Default, your general URL path with structure tags, terms surrounded by <code>%</code>, will also appear in the custom structure field and your path can be further modified there.') . '</p>' .
    30 		'<p>' . __( 'If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by <code>%</code>) will also appear in the custom structure field and your path can be further modified there.' ) . '</p>' .
    31 		'<p>' . __('When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes <code>%category%</code> or <code>%tag%</code>.') . '</p>' .
    31 		'<p>' . __('When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes <code>%category%</code> or <code>%tag%</code>.') . '</p>' .
    32 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    32 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    33 ) );
    33 ) );
    34 
    34 
    35 get_current_screen()->add_help_tab( array(
    35 get_current_screen()->add_help_tab( array(
    39 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    39 		'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    40 ) );
    40 ) );
    41 
    41 
    42 get_current_screen()->set_help_sidebar(
    42 get_current_screen()->set_help_sidebar(
    43 	'<p><strong>' . __('For more information:') . '</strong></p>' .
    43 	'<p><strong>' . __('For more information:') . '</strong></p>' .
    44 	'<p>' . __('<a href="https://codex.wordpress.org/Settings_Permalinks_Screen" target="_blank">Documentation on Permalinks Settings</a>') . '</p>' .
    44 	'<p>' . __('<a href="https://codex.wordpress.org/Settings_Permalinks_Screen">Documentation on Permalinks Settings</a>') . '</p>' .
    45 	'<p>' . __('<a href="https://codex.wordpress.org/Using_Permalinks" target="_blank">Documentation on Using Permalinks</a>') . '</p>' .
    45 	'<p>' . __('<a href="https://codex.wordpress.org/Using_Permalinks">Documentation on Using Permalinks</a>') . '</p>' .
    46 	'<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
    46 	'<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
    47 );
    47 );
    48 
       
    49 /**
       
    50  * Display JavaScript on the page.
       
    51  *
       
    52  * @since 3.5.0
       
    53  */
       
    54 function options_permalink_add_js() {
       
    55 	?>
       
    56 <script type="text/javascript">
       
    57 jQuery(document).ready(function() {
       
    58 	jQuery('.permalink-structure input:radio').change(function() {
       
    59 		if ( 'custom' == this.value )
       
    60 			return;
       
    61 		jQuery('#permalink_structure').val( this.value );
       
    62 	});
       
    63 	jQuery('#permalink_structure').focus(function() {
       
    64 		jQuery("#custom_selection").attr('checked', 'checked');
       
    65 	});
       
    66 });
       
    67 </script>
       
    68 <?php
       
    69 }
       
    70 add_filter('admin_head', 'options_permalink_add_js');
       
    71 
    48 
    72 $home_path = get_home_path();
    49 $home_path = get_home_path();
    73 $iis7_permalinks = iis7_supports_permalinks();
    50 $iis7_permalinks = iis7_supports_permalinks();
       
    51 $permalink_structure = get_option( 'permalink_structure' );
    74 
    52 
    75 $prefix = $blog_prefix = '';
    53 $prefix = $blog_prefix = '';
    76 if ( ! got_url_rewrite() )
    54 if ( ! got_url_rewrite() )
    77 	$prefix = '/index.php';
    55 	$prefix = '/index.php';
    78 if ( is_multisite() && !is_subdomain_install() && is_main_site() )
    56 
       
    57 /**
       
    58  * In a subdirectory configuration of multisite, the `/blog` prefix is used by
       
    59  * default on the main site to avoid collisions with other sites created on that
       
    60  * network. If the `permalink_structure` option has been changed to remove this
       
    61  * base prefix, WordPress core can no longer account for the possible collision.
       
    62  */
       
    63 if ( is_multisite() && ! is_subdomain_install() && is_main_site() && 0 === strpos( $permalink_structure, '/blog/' ) ) {
    79 	$blog_prefix = '/blog';
    64 	$blog_prefix = '/blog';
    80 
       
    81 if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
       
    82 	check_admin_referer('update-permalink');
       
    83 
       
    84 	if ( isset( $_POST['permalink_structure'] ) ) {
       
    85 		if ( isset( $_POST['selection'] ) && 'custom' != $_POST['selection'] )
       
    86 			$permalink_structure = $_POST['selection'];
       
    87 		else
       
    88 			$permalink_structure = $_POST['permalink_structure'];
       
    89 
       
    90 		if ( ! empty( $permalink_structure ) ) {
       
    91 			$permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );
       
    92 			if ( $prefix && $blog_prefix )
       
    93 				$permalink_structure = $prefix . preg_replace( '#^/?index\.php#', '', $permalink_structure );
       
    94 			else
       
    95 				$permalink_structure = $blog_prefix . $permalink_structure;
       
    96 		}
       
    97 		$wp_rewrite->set_permalink_structure( $permalink_structure );
       
    98 	}
       
    99 
       
   100 	if ( isset( $_POST['category_base'] ) ) {
       
   101 		$category_base = $_POST['category_base'];
       
   102 		if ( ! empty( $category_base ) )
       
   103 			$category_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
       
   104 		$wp_rewrite->set_category_base( $category_base );
       
   105 	}
       
   106 
       
   107 	if ( isset( $_POST['tag_base'] ) ) {
       
   108 		$tag_base = $_POST['tag_base'];
       
   109 		if ( ! empty( $tag_base ) )
       
   110 			$tag_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
       
   111 		$wp_rewrite->set_tag_base( $tag_base );
       
   112 	}
       
   113 
       
   114 	wp_redirect( admin_url( 'options-permalink.php?settings-updated=true' ) );
       
   115 	exit;
       
   116 }
    65 }
   117 
    66 
   118 $permalink_structure = get_option( 'permalink_structure' );
       
   119 $category_base       = get_option( 'category_base' );
    67 $category_base       = get_option( 'category_base' );
   120 $tag_base            = get_option( 'tag_base' );
    68 $tag_base            = get_option( 'tag_base' );
   121 $update_required     = false;
    69 $update_required     = false;
   122 
    70 
   123 if ( $iis7_permalinks ) {
    71 if ( $iis7_permalinks ) {
   136 		$new_rules       = array_filter( explode( "\n", $wp_rewrite->mod_rewrite_rules() ) );
    84 		$new_rules       = array_filter( explode( "\n", $wp_rewrite->mod_rewrite_rules() ) );
   137 		$update_required = ( $new_rules !== $existing_rules );
    85 		$update_required = ( $new_rules !== $existing_rules );
   138 	}
    86 	}
   139 }
    87 }
   140 
    88 
   141 if ( $wp_rewrite->using_index_permalinks() )
    89 $using_index_permalinks = $wp_rewrite->using_index_permalinks();
   142 	$usingpi = true;
    90 
   143 else
    91 if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
   144 	$usingpi = false;
    92 	check_admin_referer('update-permalink');
       
    93 
       
    94 	if ( isset( $_POST['permalink_structure'] ) ) {
       
    95 		if ( isset( $_POST['selection'] ) && 'custom' != $_POST['selection'] )
       
    96 			$permalink_structure = $_POST['selection'];
       
    97 		else
       
    98 			$permalink_structure = $_POST['permalink_structure'];
       
    99 
       
   100 		if ( ! empty( $permalink_structure ) ) {
       
   101 			$permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );
       
   102 			if ( $prefix && $blog_prefix )
       
   103 				$permalink_structure = $prefix . preg_replace( '#^/?index\.php#', '', $permalink_structure );
       
   104 			else
       
   105 				$permalink_structure = $blog_prefix . $permalink_structure;
       
   106 		}
       
   107 
       
   108 		$permalink_structure = sanitize_option( 'permalink_structure', $permalink_structure );
       
   109 
       
   110 		$wp_rewrite->set_permalink_structure( $permalink_structure );
       
   111 	}
       
   112 
       
   113 	if ( isset( $_POST['category_base'] ) ) {
       
   114 		$category_base = $_POST['category_base'];
       
   115 		if ( ! empty( $category_base ) )
       
   116 			$category_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
       
   117 		$wp_rewrite->set_category_base( $category_base );
       
   118 	}
       
   119 
       
   120 	if ( isset( $_POST['tag_base'] ) ) {
       
   121 		$tag_base = $_POST['tag_base'];
       
   122 		if ( ! empty( $tag_base ) )
       
   123 			$tag_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
       
   124 		$wp_rewrite->set_tag_base( $tag_base );
       
   125 	}
       
   126 
       
   127 	$message = __( 'Permalink structure updated.' );
       
   128 
       
   129 	if ( $iis7_permalinks ) {
       
   130 		if ( $permalink_structure && ! $using_index_permalinks && ! $writable ) {
       
   131 			$message = __( 'You should update your web.config now.' );
       
   132 		} elseif ( $permalink_structure && ! $using_index_permalinks && $writable ) {
       
   133 			$message = __( 'Permalink structure updated. Remove write access on web.config file now!' );
       
   134 		}
       
   135 	} elseif ( ! $is_nginx && $permalink_structure && ! $using_index_permalinks && ! $writable && $update_required ) {
       
   136 		$message = __( 'You should update your .htaccess now.' );
       
   137 	}
       
   138 
       
   139 	if ( ! get_settings_errors() ) {
       
   140 		add_settings_error( 'general', 'settings_updated', $message, 'updated' );
       
   141 	}
       
   142 
       
   143 	set_transient( 'settings_errors', get_settings_errors(), 30 );
       
   144 
       
   145 	wp_redirect( admin_url( 'options-permalink.php?settings-updated=true' ) );
       
   146 	exit;
       
   147 }
   145 
   148 
   146 flush_rewrite_rules();
   149 flush_rewrite_rules();
   147 
   150 
   148 require( ABSPATH . 'wp-admin/admin-header.php' );
   151 require( ABSPATH . 'wp-admin/admin-header.php' );
   149 
       
   150 if ( ! empty( $_GET['settings-updated'] ) ) : ?>
       
   151 <div id="message" class="updated notice is-dismissible"><p><?php
       
   152 if ( ! is_multisite() ) {
       
   153 	if ( $iis7_permalinks ) {
       
   154 		if ( $permalink_structure && ! $usingpi && ! $writable ) {
       
   155 			_e('You should update your web.config now.');
       
   156 		} elseif ( $permalink_structure && ! $usingpi && $writable ) {
       
   157 			_e('Permalink structure updated. Remove write access on web.config file now!');
       
   158 		} else {
       
   159 			_e('Permalink structure updated.');
       
   160 		}
       
   161 	} elseif ( $is_nginx ) {
       
   162 		_e('Permalink structure updated.');
       
   163 	} else {
       
   164 		if ( $permalink_structure && ! $usingpi && ! $writable && $update_required ) {
       
   165 			_e('You should update your .htaccess now.');
       
   166 		} else {
       
   167 			_e('Permalink structure updated.');
       
   168 		}
       
   169 	}
       
   170 } else {
       
   171 	_e('Permalink structure updated.');
       
   172 }
       
   173 ?>
   152 ?>
   174 </p></div>
       
   175 <?php endif; ?>
       
   176 
       
   177 <div class="wrap">
   153 <div class="wrap">
   178 <h2><?php echo esc_html( $title ); ?></h2>
   154 <h1><?php echo esc_html( $title ); ?></h1>
   179 
   155 
   180 <form name="form" action="options-permalink.php" method="post">
   156 <form name="form" action="options-permalink.php" method="post">
   181 <?php wp_nonce_field('update-permalink') ?>
   157 <?php wp_nonce_field('update-permalink') ?>
   182 
   158 
   183   <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them; however, WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="https://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.'); ?></p>
   159 	<p><?php
       
   160 		printf(
       
   161 			/* translators: %s: Codex URL */
       
   162 			__( 'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="%s">number of tags are available</a>, and here are some examples to get you started.' ),
       
   163 			__( 'https://codex.wordpress.org/Using_Permalinks' )
       
   164 		);
       
   165 	?></p>
   184 
   166 
   185 <?php
   167 <?php
   186 if ( is_multisite() && !is_subdomain_install() && is_main_site() ) {
   168 if ( is_multisite() && ! is_subdomain_install() && is_main_site() && 0 === strpos( $permalink_structure, '/blog/' ) ) {
   187 	$permalink_structure = preg_replace( '|^/?blog|', '', $permalink_structure );
   169 	$permalink_structure = preg_replace( '|^/?blog|', '', $permalink_structure );
   188 	$category_base = preg_replace( '|^/?blog|', '', $category_base );
   170 	$category_base = preg_replace( '|^/?blog|', '', $category_base );
   189 	$tag_base = preg_replace( '|^/?blog|', '', $tag_base );
   171 	$tag_base = preg_replace( '|^/?blog|', '', $tag_base );
   190 }
   172 }
   191 
   173 
   195 	2 => $prefix . '/%year%/%monthnum%/%postname%/',
   177 	2 => $prefix . '/%year%/%monthnum%/%postname%/',
   196 	3 => $prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/%post_id%',
   178 	3 => $prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/%post_id%',
   197 	4 => $prefix . '/%postname%/',
   179 	4 => $prefix . '/%postname%/',
   198 );
   180 );
   199 ?>
   181 ?>
   200 <h3 class="title"><?php _e('Common Settings'); ?></h3>
   182 <h2 class="title"><?php _e('Common Settings'); ?></h2>
   201 <table class="form-table permalink-structure">
   183 <table class="form-table permalink-structure">
   202 	<tr>
   184 	<tr>
   203 		<th><label><input name="selection" type="radio" value="" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
   185 		<th><label><input name="selection" type="radio" value="" <?php checked('', $permalink_structure); ?> /> <?php _e( 'Plain' ); ?></label></th>
   204 		<td><code><?php echo get_option('home'); ?>/?p=123</code></td>
   186 		<td><code><?php echo get_option('home'); ?>/?p=123</code></td>
   205 	</tr>
   187 	</tr>
   206 	<tr>
   188 	<tr>
   207 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[1]); ?>" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Day and name'); ?></label></th>
   189 		<th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[1]); ?>" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Day and name'); ?></label></th>
   208 		<td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
   190 		<td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
   226 			</label>
   208 			</label>
   227 		</th>
   209 		</th>
   228 		<td>
   210 		<td>
   229 			<code><?php echo get_option('home') . $blog_prefix; ?></code>
   211 			<code><?php echo get_option('home') . $blog_prefix; ?></code>
   230 			<input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
   212 			<input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
       
   213 			<div class="available-structure-tags hide-if-no-js">
       
   214 				<div id="custom_selection_updated" aria-live="assertive" class="screen-reader-text"></div>
       
   215 				<?php
       
   216 				$available_tags = array(
       
   217 					/* translators: %s: permalink structure tag */
       
   218 					'year'     => __( '%s (The year of the post, four digits, for example 2004.)' ),
       
   219 					/* translators: %s: permalink structure tag */
       
   220 					'monthnum' => __( '%s (Month of the year, for example 05.)' ),
       
   221 					/* translators: %s: permalink structure tag */
       
   222 					'day'      => __( '%s (Day of the month, for example 28.)' ),
       
   223 					/* translators: %s: permalink structure tag */
       
   224 					'hour'     => __( '%s (Hour of the day, for example 15.)' ),
       
   225 					/* translators: %s: permalink structure tag */
       
   226 					'minute'   => __( '%s (Minute of the hour, for example 43.)' ),
       
   227 					/* translators: %s: permalink structure tag */
       
   228 					'second'   => __( '%s (Second of the minute, for example 33.)' ),
       
   229 					/* translators: %s: permalink structure tag */
       
   230 					'post_id'  => __( '%s (The unique ID of the post, for example 423.)' ),
       
   231 					/* translators: %s: permalink structure tag */
       
   232 					'postname' => __( '%s (The sanitized post title (slug).)' ),
       
   233 					/* translators: %s: permalink structure tag */
       
   234 					'category' => __( '%s (Category slug. Nested sub-categories appear as nested directories in the URL.)' ),
       
   235 					/* translators: %s: permalink structure tag */
       
   236 					'author'   => __( '%s (A sanitized version of the author name.)' ),
       
   237 				);
       
   238 
       
   239 				/**
       
   240 				 * Filters the list of available permalink structure tags on the Permalinks settings page.
       
   241 				 *
       
   242 				 * @since 4.8.0
       
   243 				 *
       
   244 				 * @param array $available_tags A key => value pair of available permalink structure tags.
       
   245 				 */
       
   246 				$available_tags = apply_filters( 'available_permalink_structure_tags', $available_tags );
       
   247 
       
   248 				/* translators: %s: permalink structure tag */
       
   249 				$structure_tag_added = __( '%s added to permalink structure' );
       
   250 
       
   251 				/* translators: %s: permalink structure tag */
       
   252 				$structure_tag_already_used = __( '%s (already used in permalink structure)' );
       
   253 
       
   254 				if ( ! empty( $available_tags ) ) :
       
   255 					?>
       
   256 					<p><?php _e( 'Available tags:' ); ?></p>
       
   257 					<ul role="list">
       
   258 						<?php
       
   259 						foreach ( $available_tags as $tag => $explanation ) {
       
   260 							?>
       
   261 							<li>
       
   262 								<button type="button"
       
   263 								        class="button button-secondary"
       
   264 								        aria-label="<?php echo esc_attr( sprintf( $explanation, $tag ) ); ?>"
       
   265 								        data-added="<?php echo esc_attr( sprintf( $structure_tag_added, $tag ) ); ?>"
       
   266 								        data-used="<?php echo esc_attr( sprintf( $structure_tag_already_used, $tag ) ); ?>">
       
   267 									<?php echo '%' . $tag . '%'; ?>
       
   268 								</button>
       
   269 							</li>
       
   270 							<?php
       
   271 						}
       
   272 						?>
       
   273 					</ul>
       
   274 				<?php endif; ?>
       
   275 			</div>
   231 		</td>
   276 		</td>
   232 	</tr>
   277 	</tr>
   233 </table>
   278 </table>
   234 
   279 
   235 <h3 class="title"><?php _e('Optional'); ?></h3>
   280 <h2 class="title"><?php _e('Optional'); ?></h2>
   236 <p><?php
   281 <p><?php
   237 /* translators: %s is a placeholder that must come at the start of the URL. */
   282 /* translators: %s: placeholder that must come at the start of the URL */
   238 printf( __('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>%s/topics/uncategorized/</code>. If you leave these blank the defaults will be used.'), get_option('home') . $blog_prefix . $prefix ); ?></p>
   283 printf( __( 'If you like, you may enter custom structures for your category and tag URLs here. For example, using <code>topics</code> as your category base would make your category links like <code>%s/topics/uncategorized/</code>. If you leave these blank the defaults will be used.' ), get_option( 'home' ) . $blog_prefix . $prefix ); ?></p>
   239 
   284 
   240 <table class="form-table">
   285 <table class="form-table">
   241 	<tr>
   286 	<tr>
   242 		<th><label for="category_base"><?php /* translators: prefix for category permalinks */ _e('Category base'); ?></label></th>
   287 		<th><label for="category_base"><?php /* translators: prefix for category permalinks */ _e('Category base'); ?></label></th>
   243 		<td><?php echo $blog_prefix; ?> <input name="category_base" id="category_base" type="text" value="<?php echo esc_attr( $category_base ); ?>" class="regular-text code" /></td>
   288 		<td><?php echo $blog_prefix; ?> <input name="category_base" id="category_base" type="text" value="<?php echo esc_attr( $category_base ); ?>" class="regular-text code" /></td>
   253 
   298 
   254 <?php submit_button(); ?>
   299 <?php submit_button(); ?>
   255   </form>
   300   </form>
   256 <?php if ( !is_multisite() ) { ?>
   301 <?php if ( !is_multisite() ) { ?>
   257 <?php if ( $iis7_permalinks ) :
   302 <?php if ( $iis7_permalinks ) :
   258 	if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) :
   303 	if ( isset($_POST['submit']) && $permalink_structure && ! $using_index_permalinks && ! $writable ) :
   259 		if ( file_exists($home_path . 'web.config') ) : ?>
   304 		if ( file_exists($home_path . 'web.config') ) : ?>
   260 <p><?php _e('If your <code>web.config</code> file were <a href="https://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of the <code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code> element in <code>web.config</code> file.') ?></p>
   305 <p><?php
       
   306 	printf(
       
   307 		/* translators: 1: web.config, 2: Codex URL, 3: CTRL + a, 4: element code */
       
   308 		__( 'If your %1$s file was <a href="%2$s">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your %1$s file. Click in the field and press %3$s to select all. Then insert this rule inside of the %4$s element in %1$s file.' ),
       
   309 		'<code>web.config</code>',
       
   310 		__( 'https://codex.wordpress.org/Changing_File_Permissions' ),
       
   311 		'<kbd>CTRL + a</kbd>',
       
   312 		'<code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code>'
       
   313 	);
       
   314 ?></p>
   261 <form action="options-permalink.php" method="post">
   315 <form action="options-permalink.php" method="post">
   262 <?php wp_nonce_field('update-permalink') ?>
   316 <?php wp_nonce_field('update-permalink') ?>
   263 	<p><textarea rows="9" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules() ); ?></textarea></p>
   317 	<p><textarea rows="9" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules() ); ?></textarea></p>
   264 </form>
   318 </form>
   265 <p><?php _e('If you temporarily make your <code>web.config</code> file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved.') ?></p>
   319 <p><?php
       
   320 	printf(
       
   321 		/* translators: %s: web.config */
       
   322 		__( 'If you temporarily make your %s file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved.' ),
       
   323 		'<code>web.config</code>'
       
   324 	);
       
   325 ?></p>
   266 		<?php else : ?>
   326 		<?php else : ?>
   267 <p><?php _e('If the root directory of your site were <a href="https://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your <code>web.config</code> file. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this code into the <code>web.config</code> file.') ?></p>
   327 <p><?php
       
   328 	printf(
       
   329 		/* translators: 1: Codex URL, 2: web.config, 3: CTRL + a */
       
   330 		__( 'If the root directory of your site was <a href="%1$s">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your %2$s file. Create a new file, called %2$s in the root directory of your site. Click in the field and press %3$s to select all. Then insert this code into the %2$s file.' ),
       
   331 		__( 'https://codex.wordpress.org/Changing_File_Permissions' ),
       
   332 		'<code>web.config</code>',
       
   333 		'<kbd>CTRL + a</kbd>'
       
   334 	);
       
   335 ?></p>
   268 <form action="options-permalink.php" method="post">
   336 <form action="options-permalink.php" method="post">
   269 <?php wp_nonce_field('update-permalink') ?>
   337 <?php wp_nonce_field('update-permalink') ?>
   270 	<p><textarea rows="18" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules(true) ); ?></textarea></p>
   338 	<p><textarea rows="18" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->iis7_url_rewrite_rules(true) ); ?></textarea></p>
   271 </form>
   339 </form>
   272 <p><?php _e('If you temporarily make your site&#8217;s root directory writable for us to generate the <code>web.config</code> file automatically, do not forget to revert the permissions after the file has been created.') ?></p>
   340 <p><?php
       
   341 	printf(
       
   342 		/* translators: %s: web.config */
       
   343 		__( 'If you temporarily make your site&#8217;s root directory writable for us to generate the %s file automatically, do not forget to revert the permissions after the file has been created.' ),
       
   344 		'<code>web.config</code>'
       
   345 	);
       
   346 ?></p>
   273 		<?php endif; ?>
   347 		<?php endif; ?>
   274 	<?php endif; ?>
   348 	<?php endif; ?>
   275 <?php elseif ( ! $is_nginx ) :
   349 <?php elseif ( $is_nginx ) : ?>
   276 	if ( $permalink_structure && ! $usingpi && ! $writable && $update_required ) : ?>
   350 	<p><?php _e( '<a href="https://codex.wordpress.org/Nginx">Documentation on Nginx configuration</a>.' ); ?></p>
   277 <p><?php _e('If your <code>.htaccess</code> file were <a href="https://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn&#8217;t so these are the mod_rewrite rules you should have in your <code>.htaccess</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all.') ?></p>
   351 <?php else:
       
   352 	if ( $permalink_structure && ! $using_index_permalinks && ! $writable && $update_required ) : ?>
       
   353 <p><?php
       
   354 	printf(
       
   355 		/* translators: 1: .htaccess, 2: Codex URL, 3: CTRL + a */
       
   356 		__( 'If your %1$s file was <a href="%2$s">writable</a>, we could do this automatically, but it isn&#8217;t so these are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s to select all.' ),
       
   357 		'<code>.htaccess</code>',
       
   358 		__( 'https://codex.wordpress.org/Changing_File_Permissions' ),
       
   359 		'<kbd>CTRL + a</kbd>'
       
   360 	);
       
   361 ?></p>
   278 <form action="options-permalink.php" method="post">
   362 <form action="options-permalink.php" method="post">
   279 <?php wp_nonce_field('update-permalink') ?>
   363 <?php wp_nonce_field('update-permalink') ?>
   280 	<p><textarea rows="6" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->mod_rewrite_rules() ); ?></textarea></p>
   364 	<p><textarea rows="6" class="large-text readonly" name="rules" id="rules" readonly="readonly"><?php echo esc_textarea( $wp_rewrite->mod_rewrite_rules() ); ?></textarea></p>
   281 </form>
   365 </form>
   282 	<?php endif; ?>
   366 	<?php endif; ?>