]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-permalink.php
WordPress 3.9.2
[autoinstalls/wordpress.git] / wp-admin / options-permalink.php
1 <?php
2 /**
3  * Permalink Settings Administration Screen.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /** WordPress Administration Bootstrap */
10 require_once( dirname( __FILE__ ) . '/admin.php' );
11
12 if ( ! current_user_can( 'manage_options' ) )
13         wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
14
15 $title = __('Permalink Settings');
16 $parent_file = 'options-general.php';
17
18 get_current_screen()->add_help_tab( array(
19         'id'      => '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>' .
22                 '<p>' . __('This screen allows you to choose your default 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>',
24 ) );
25
26 get_current_screen()->add_help_tab( array(
27         'id'      => 'common-settings',
28         'title'   => __('Common 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>' .
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>' .
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>',
33 ) );
34
35 get_current_screen()->add_help_tab( array(
36         'id'      => 'custom-structures',
37         'title'   => __('Custom Structures'),
38         'content' => '<p>' . __('The Optional fields let you customize the &#8220;category&#8221; and &#8220;tag&#8221; base names that will appear in archive URLs. For example, the page listing all posts in the &#8220;Uncategorized&#8221; category could be <code>/topics/uncategorized</code> instead of <code>/category/uncategorized</code>.') . '</p>' .
39                 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
40 ) );
41
42 get_current_screen()->set_help_sidebar(
43         '<p><strong>' . __('For more information:') . '</strong></p>' .
44         '<p>' . __('<a href="http://codex.wordpress.org/Settings_Permalinks_Screen" target="_blank">Documentation on Permalinks Settings</a>') . '</p>' .
45         '<p>' . __('<a href="http://codex.wordpress.org/Using_Permalinks" target="_blank">Documentation on Using Permalinks</a>') . '</p>' .
46         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
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 //<![CDATA[
58 jQuery(document).ready(function() {
59         jQuery('.permalink-structure input:radio').change(function() {
60                 if ( 'custom' == this.value )
61                         return;
62                 jQuery('#permalink_structure').val( this.value );
63         });
64         jQuery('#permalink_structure').focus(function() {
65                 jQuery("#custom_selection").attr('checked', 'checked');
66         });
67 });
68 //]]>
69 </script>
70 <?php
71 }
72 add_filter('admin_head', 'options_permalink_add_js');
73
74 $home_path = get_home_path();
75 $iis7_permalinks = iis7_supports_permalinks();
76
77 $prefix = $blog_prefix = '';
78 if ( ! got_url_rewrite() )
79         $prefix = '/index.php';
80 if ( is_multisite() && !is_subdomain_install() && is_main_site() )
81         $blog_prefix = '/blog';
82
83 if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
84         check_admin_referer('update-permalink');
85
86         if ( isset( $_POST['permalink_structure'] ) ) {
87                 if ( isset( $_POST['selection'] ) && 'custom' != $_POST['selection'] )
88                         $permalink_structure = $_POST['selection'];
89                 else
90                         $permalink_structure = $_POST['permalink_structure'];
91
92                 if ( ! empty( $permalink_structure ) ) {
93                         $permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );
94                         if ( $prefix && $blog_prefix )
95                                 $permalink_structure = $prefix . preg_replace( '#^/?index\.php#', '', $permalink_structure );
96                         else
97                                 $permalink_structure = $blog_prefix . $permalink_structure;
98                 }
99                 $wp_rewrite->set_permalink_structure( $permalink_structure );
100         }
101
102         if ( isset( $_POST['category_base'] ) ) {
103                 $category_base = $_POST['category_base'];
104                 if ( ! empty( $category_base ) )
105                         $category_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
106                 $wp_rewrite->set_category_base( $category_base );
107         }
108
109         if ( isset( $_POST['tag_base'] ) ) {
110                 $tag_base = $_POST['tag_base'];
111                 if ( ! empty( $tag_base ) )
112                         $tag_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
113                 $wp_rewrite->set_tag_base( $tag_base );
114         }
115
116         wp_redirect( admin_url( 'options-permalink.php?settings-updated=true' ) );
117         exit;
118 }
119
120 $permalink_structure = get_option( 'permalink_structure' );
121 $category_base       = get_option( 'category_base' );
122 $tag_base            = get_option( 'tag_base' );
123 $update_required     = false;
124
125 if ( $iis7_permalinks ) {
126         if ( ( ! file_exists($home_path . 'web.config') && win_is_writable($home_path) ) || win_is_writable($home_path . 'web.config') )
127                 $writable = true;
128         else
129                 $writable = false;
130 } elseif ( $is_nginx ) {
131         $writable = false;
132 } else {
133         if ( ( ! file_exists( $home_path . '.htaccess' ) && is_writable( $home_path ) ) || is_writable( $home_path . '.htaccess' ) ) {
134                 $writable = true;
135         } else {
136                 $writable = false;
137                 $existing_rules  = array_filter( extract_from_markers( $home_path . '.htaccess', 'WordPress' ) );
138                 $new_rules       = array_filter( explode( "\n", $wp_rewrite->mod_rewrite_rules() ) );
139                 $update_required = ( $new_rules !== $existing_rules );
140         }
141 }
142
143 if ( $wp_rewrite->using_index_permalinks() )
144         $usingpi = true;
145 else
146         $usingpi = false;
147
148 flush_rewrite_rules();
149
150 require( ABSPATH . 'wp-admin/admin-header.php' );
151
152 if ( ! empty( $_GET['settings-updated'] ) ) : ?>
153 <div id="message" class="updated"><p><?php
154 if ( ! is_multisite() ) {
155         if ( $iis7_permalinks ) {
156                 if ( $permalink_structure && ! $usingpi && ! $writable )
157                         _e('You should update your web.config now.');
158                 else if ( $permalink_structure && ! $usingpi && $writable )
159                         _e('Permalink structure updated. Remove write access on web.config file now!');
160                 else
161                         _e('Permalink structure updated.');
162         } elseif ( $is_nginx ) {
163                 _e('Permalink structure updated.');
164         } else {
165                 if ( $permalink_structure && ! $usingpi && ! $writable && $update_required ) {
166                         _e('You should update your .htaccess now.');
167                 } else {
168                         _e('Permalink structure updated.');
169                 }
170         }
171 } else {
172         _e('Permalink structure updated.');
173 }
174 ?>
175 </p></div>
176 <?php endif; ?>
177
178 <div class="wrap">
179 <h2><?php echo esc_html( $title ); ?></h2>
180
181 <form name="form" action="options-permalink.php" method="post">
182 <?php wp_nonce_field('update-permalink') ?>
183
184   <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="http://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.'); ?></p>
185
186 <?php
187 if ( is_multisite() && !is_subdomain_install() && is_main_site() ) {
188         $permalink_structure = preg_replace( '|^/?blog|', '', $permalink_structure );
189         $category_base = preg_replace( '|^/?blog|', '', $category_base );
190         $tag_base = preg_replace( '|^/?blog|', '', $tag_base );
191 }
192
193 $structures = array(
194         0 => '',
195         1 => $prefix . '/%year%/%monthnum%/%day%/%postname%/',
196         2 => $prefix . '/%year%/%monthnum%/%postname%/',
197         3 => $prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/%post_id%',
198         4 => $prefix . '/%postname%/',
199 );
200 ?>
201 <h3 class="title"><?php _e('Common Settings'); ?></h3>
202 <table class="form-table permalink-structure">
203         <tr>
204                 <th><label><input name="selection" type="radio" value="" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
205                 <td><code><?php echo get_option('home'); ?>/?p=123</code></td>
206         </tr>
207         <tr>
208                 <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>
209                 <td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
210         </tr>
211         <tr>
212                 <th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[2]); ?>" <?php checked($structures[2], $permalink_structure); ?> /> <?php _e('Month and name'); ?></label></th>
213                 <td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . date('Y') . '/' . date('m') . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
214         </tr>
215         <tr>
216                 <th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[3]); ?>" <?php checked($structures[3], $permalink_structure); ?> /> <?php _e('Numeric'); ?></label></th>
217                 <td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/123'; ?></code></td>
218         </tr>
219         <tr>
220                 <th><label><input name="selection" type="radio" value="<?php echo esc_attr($structures[4]); ?>" <?php checked($structures[4], $permalink_structure); ?> /> <?php _e('Post name'); ?></label></th>
221                 <td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
222         </tr>
223         <tr>
224                 <th>
225                         <label><input name="selection" id="custom_selection" type="radio" value="custom" <?php checked( !in_array($permalink_structure, $structures) ); ?> />
226                         <?php _e('Custom Structure'); ?>
227                         </label>
228                 </th>
229                 <td>
230                         <code><?php echo get_option('home') . $blog_prefix; ?></code>
231                         <input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
232                 </td>
233         </tr>
234 </table>
235
236 <h3 class="title"><?php _e('Optional'); ?></h3>
237 <?php
238 $suffix = $prefix;
239 if ( $suffix )
240         $suffix = ltrim( $suffix, '/' ) . '/';
241 ?>
242 <p><?php
243 /* translators: %s is a placeholder that must come at the start of the URL path. */
244 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>http://example.org/%stopics/uncategorized/</code>. If you leave these blank the defaults will be used.'), $suffix ); ?></p>
245
246 <table class="form-table">
247         <tr>
248                 <th><label for="category_base"><?php /* translators: prefix for category permalinks */ _e('Category base'); ?></label></th>
249                 <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>
250         </tr>
251         <tr>
252                 <th><label for="tag_base"><?php _e('Tag base'); ?></label></th>
253                 <td><?php echo $blog_prefix; ?> <input name="tag_base" id="tag_base" type="text" value="<?php echo esc_attr($tag_base); ?>" class="regular-text code" /></td>
254         </tr>
255         <?php do_settings_fields('permalink', 'optional'); ?>
256 </table>
257
258 <?php do_settings_sections('permalink'); ?>
259
260 <?php submit_button(); ?>
261   </form>
262 <?php if ( !is_multisite() ) { ?>
263 <?php if ( $iis7_permalinks ) :
264         if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) :
265                 if ( file_exists($home_path . 'web.config') ) : ?>
266 <p><?php _e('If your <code>web.config</code> file were <a href="http://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>
267 <form action="options-permalink.php" method="post">
268 <?php wp_nonce_field('update-permalink') ?>
269         <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>
270 </form>
271 <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>
272                 <?php else : ?>
273 <p><?php _e('If the root directory of your site were <a href="http://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>
274 <form action="options-permalink.php" method="post">
275 <?php wp_nonce_field('update-permalink') ?>
276         <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>
277 </form>
278 <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>
279                 <?php endif; ?>
280         <?php endif; ?>
281 <?php elseif ( ! $is_nginx ) :
282         if ( $permalink_structure && ! $usingpi && ! $writable && $update_required ) : ?>
283 <p><?php _e('If your <code>.htaccess</code> file were <a href="http://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>
284 <form action="options-permalink.php" method="post">
285 <?php wp_nonce_field('update-permalink') ?>
286         <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>
287 </form>
288         <?php endif; ?>
289 <?php endif; ?>
290 <?php } // multisite ?>
291
292 </div>
293
294 <?php require( ABSPATH . 'wp-admin/admin-footer.php' ); ?>