]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/options-permalink.php
WordPress 4.4.1
[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 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'      => 'permalink-settings',
28         'title'   => __('Permalink Settings'),
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 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>' .
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="https://codex.wordpress.org/Settings_Permalinks_Screen" target="_blank">Documentation on Permalinks Settings</a>') . '</p>' .
45         '<p>' . __('<a href="https://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 add_filter('admin_head', 'options_permalink_add_js');
50
51 $home_path = get_home_path();
52 $iis7_permalinks = iis7_supports_permalinks();
53 $permalink_structure = get_option( 'permalink_structure' );
54
55 $prefix = $blog_prefix = '';
56 if ( ! got_url_rewrite() )
57         $prefix = '/index.php';
58
59 /**
60  * In a subdirectory configuration of multisite, the `/blog` prefix is used by
61  * default on the main site to avoid collisions with other sites created on that
62  * network. If the `permalink_structure` option has been changed to remove this
63  * base prefix, WordPress core can no longer account for the possible collision.
64  */
65 if ( is_multisite() && ! is_subdomain_install() && is_main_site() && 0 === strpos( $permalink_structure, '/blog/' ) ) {
66         $blog_prefix = '/blog';
67 }
68
69 if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
70         check_admin_referer('update-permalink');
71
72         if ( isset( $_POST['permalink_structure'] ) ) {
73                 if ( isset( $_POST['selection'] ) && 'custom' != $_POST['selection'] )
74                         $permalink_structure = $_POST['selection'];
75                 else
76                         $permalink_structure = $_POST['permalink_structure'];
77
78                 if ( ! empty( $permalink_structure ) ) {
79                         $permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );
80                         if ( $prefix && $blog_prefix )
81                                 $permalink_structure = $prefix . preg_replace( '#^/?index\.php#', '', $permalink_structure );
82                         else
83                                 $permalink_structure = $blog_prefix . $permalink_structure;
84                 }
85                 $wp_rewrite->set_permalink_structure( $permalink_structure );
86         }
87
88         if ( isset( $_POST['category_base'] ) ) {
89                 $category_base = $_POST['category_base'];
90                 if ( ! empty( $category_base ) )
91                         $category_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
92                 $wp_rewrite->set_category_base( $category_base );
93         }
94
95         if ( isset( $_POST['tag_base'] ) ) {
96                 $tag_base = $_POST['tag_base'];
97                 if ( ! empty( $tag_base ) )
98                         $tag_base = $blog_prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
99                 $wp_rewrite->set_tag_base( $tag_base );
100         }
101
102         wp_redirect( admin_url( 'options-permalink.php?settings-updated=true' ) );
103         exit;
104 }
105
106 $category_base       = get_option( 'category_base' );
107 $tag_base            = get_option( 'tag_base' );
108 $update_required     = false;
109
110 if ( $iis7_permalinks ) {
111         if ( ( ! file_exists($home_path . 'web.config') && win_is_writable($home_path) ) || win_is_writable($home_path . 'web.config') )
112                 $writable = true;
113         else
114                 $writable = false;
115 } elseif ( $is_nginx ) {
116         $writable = false;
117 } else {
118         if ( ( ! file_exists( $home_path . '.htaccess' ) && is_writable( $home_path ) ) || is_writable( $home_path . '.htaccess' ) ) {
119                 $writable = true;
120         } else {
121                 $writable = false;
122                 $existing_rules  = array_filter( extract_from_markers( $home_path . '.htaccess', 'WordPress' ) );
123                 $new_rules       = array_filter( explode( "\n", $wp_rewrite->mod_rewrite_rules() ) );
124                 $update_required = ( $new_rules !== $existing_rules );
125         }
126 }
127
128 if ( $wp_rewrite->using_index_permalinks() )
129         $usingpi = true;
130 else
131         $usingpi = false;
132
133 flush_rewrite_rules();
134
135 require( ABSPATH . 'wp-admin/admin-header.php' );
136
137 if ( ! empty( $_GET['settings-updated'] ) ) : ?>
138 <div id="message" class="updated notice is-dismissible"><p><?php
139 if ( ! is_multisite() ) {
140         if ( $iis7_permalinks ) {
141                 if ( $permalink_structure && ! $usingpi && ! $writable ) {
142                         _e('You should update your web.config now.');
143                 } elseif ( $permalink_structure && ! $usingpi && $writable ) {
144                         _e('Permalink structure updated. Remove write access on web.config file now!');
145                 } else {
146                         _e('Permalink structure updated.');
147                 }
148         } elseif ( $is_nginx ) {
149                 _e('Permalink structure updated.');
150         } else {
151                 if ( $permalink_structure && ! $usingpi && ! $writable && $update_required ) {
152                         _e('You should update your .htaccess now.');
153                 } else {
154                         _e('Permalink structure updated.');
155                 }
156         }
157 } else {
158         _e('Permalink structure updated.');
159 }
160 ?>
161 </p></div>
162 <?php endif; ?>
163
164 <div class="wrap">
165 <h1><?php echo esc_html( $title ); ?></h1>
166
167 <form name="form" action="options-permalink.php" method="post">
168 <?php wp_nonce_field('update-permalink') ?>
169
170   <p><?php _e( '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="https://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.' ); ?></p>
171
172 <?php
173 if ( is_multisite() && ! is_subdomain_install() && is_main_site() && 0 === strpos( $permalink_structure, '/blog/' ) ) {
174         $permalink_structure = preg_replace( '|^/?blog|', '', $permalink_structure );
175         $category_base = preg_replace( '|^/?blog|', '', $category_base );
176         $tag_base = preg_replace( '|^/?blog|', '', $tag_base );
177 }
178
179 $structures = array(
180         0 => '',
181         1 => $prefix . '/%year%/%monthnum%/%day%/%postname%/',
182         2 => $prefix . '/%year%/%monthnum%/%postname%/',
183         3 => $prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/%post_id%',
184         4 => $prefix . '/%postname%/',
185 );
186 ?>
187 <h2 class="title"><?php _e('Common Settings'); ?></h2>
188 <table class="form-table permalink-structure">
189         <tr>
190                 <th><label><input name="selection" type="radio" value="" <?php checked('', $permalink_structure); ?> /> <?php _e( 'Plain' ); ?></label></th>
191                 <td><code><?php echo get_option('home'); ?>/?p=123</code></td>
192         </tr>
193         <tr>
194                 <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>
195                 <td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
196         </tr>
197         <tr>
198                 <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>
199                 <td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . date('Y') . '/' . date('m') . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
200         </tr>
201         <tr>
202                 <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>
203                 <td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . _x( 'archives', 'sample permalink base' ) . '/123'; ?></code></td>
204         </tr>
205         <tr>
206                 <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>
207                 <td><code><?php echo get_option('home') . $blog_prefix . $prefix . '/' . _x( 'sample-post', 'sample permalink structure' ) . '/'; ?></code></td>
208         </tr>
209         <tr>
210                 <th>
211                         <label><input name="selection" id="custom_selection" type="radio" value="custom" <?php checked( !in_array($permalink_structure, $structures) ); ?> />
212                         <?php _e('Custom Structure'); ?>
213                         </label>
214                 </th>
215                 <td>
216                         <code><?php echo get_option('home') . $blog_prefix; ?></code>
217                         <input name="permalink_structure" id="permalink_structure" type="text" value="<?php echo esc_attr($permalink_structure); ?>" class="regular-text code" />
218                 </td>
219         </tr>
220 </table>
221
222 <h2 class="title"><?php _e('Optional'); ?></h2>
223 <p><?php
224 /* translators: %s is a placeholder that must come at the start of the URL. */
225 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>
226
227 <table class="form-table">
228         <tr>
229                 <th><label for="category_base"><?php /* translators: prefix for category permalinks */ _e('Category base'); ?></label></th>
230                 <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>
231         </tr>
232         <tr>
233                 <th><label for="tag_base"><?php _e('Tag base'); ?></label></th>
234                 <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>
235         </tr>
236         <?php do_settings_fields('permalink', 'optional'); ?>
237 </table>
238
239 <?php do_settings_sections('permalink'); ?>
240
241 <?php submit_button(); ?>
242   </form>
243 <?php if ( !is_multisite() ) { ?>
244 <?php if ( $iis7_permalinks ) :
245         if ( isset($_POST['submit']) && $permalink_structure && ! $usingpi && ! $writable ) :
246                 if ( file_exists($home_path . 'web.config') ) : ?>
247 <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>
248 <form action="options-permalink.php" method="post">
249 <?php wp_nonce_field('update-permalink') ?>
250         <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>
251 </form>
252 <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>
253                 <?php else : ?>
254 <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>
255 <form action="options-permalink.php" method="post">
256 <?php wp_nonce_field('update-permalink') ?>
257         <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>
258 </form>
259 <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>
260                 <?php endif; ?>
261         <?php endif; ?>
262 <?php elseif ( $is_nginx ) : ?>
263         <p><?php _e( '<a href="https://codex.wordpress.org/Nginx">Documentation on Nginx configuration</a>.' ); ?></p>
264 <?php else:
265         if ( $permalink_structure && ! $usingpi && ! $writable && $update_required ) : ?>
266 <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>
267 <form action="options-permalink.php" method="post">
268 <?php wp_nonce_field('update-permalink') ?>
269         <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>
270 </form>
271         <?php endif; ?>
272 <?php endif; ?>
273 <?php } // multisite ?>
274
275 </div>
276
277 <?php require( ABSPATH . 'wp-admin/admin-footer.php' ); ?>