|
1 <?php |
|
2 /** |
|
3 * Miscellaneous settings administration panel. |
|
4 * |
|
5 * @package WordPress |
|
6 * @subpackage Administration |
|
7 */ |
|
8 |
|
9 /** WordPress Administration Bootstrap */ |
|
10 require_once('admin.php'); |
|
11 |
|
12 if ( ! current_user_can('manage_options') ) |
|
13 wp_die(__('You do not have sufficient permissions to manage options for this blog.')); |
|
14 |
|
15 $title = __('Miscellaneous Settings'); |
|
16 $parent_file = 'options-general.php'; |
|
17 |
|
18 include('admin-header.php'); |
|
19 |
|
20 ?> |
|
21 |
|
22 <div class="wrap"> |
|
23 <?php screen_icon(); ?> |
|
24 <h2><?php echo esc_html( $title ); ?></h2> |
|
25 |
|
26 <form method="post" action="options.php"> |
|
27 <?php settings_fields('misc'); ?> |
|
28 |
|
29 <h3><?php _e('Uploading Files'); ?></h3> |
|
30 <table class="form-table"> |
|
31 <tr valign="top"> |
|
32 <th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th> |
|
33 <td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(str_replace(ABSPATH, '', get_option('upload_path'))); ?>" class="regular-text code" /> |
|
34 <span class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span> |
|
35 </td> |
|
36 </tr> |
|
37 |
|
38 <tr valign="top"> |
|
39 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th> |
|
40 <td><input name="upload_url_path" type="text" id="upload_url_path" value="<?php echo esc_attr( get_option('upload_url_path')); ?>" class="regular-text code" /> |
|
41 <span class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></span> |
|
42 </td> |
|
43 </tr> |
|
44 |
|
45 <tr> |
|
46 <th scope="row" colspan="2" class="th-full"> |
|
47 <label for="uploads_use_yearmonth_folders"> |
|
48 <input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> /> |
|
49 <?php _e('Organize my uploads into month- and year-based folders'); ?> |
|
50 </label> |
|
51 </th> |
|
52 </tr> |
|
53 <?php do_settings_fields('misc', 'default'); ?> |
|
54 </table> |
|
55 |
|
56 <table class="form-table"> |
|
57 |
|
58 <tr> |
|
59 <th scope="row" class="th-full"> |
|
60 <label for="use_linksupdate"> |
|
61 <input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1"<?php checked('1', get_option('use_linksupdate')); ?> /> |
|
62 <?php _e('Track Links’ Update Times') ?> |
|
63 </label> |
|
64 </th> |
|
65 </tr> |
|
66 <tr> |
|
67 |
|
68 </table> |
|
69 |
|
70 <?php do_settings_sections('misc'); ?> |
|
71 |
|
72 <p class="submit"> |
|
73 <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" /> |
|
74 </p> |
|
75 |
|
76 </form> |
|
77 </div> |
|
78 |
|
79 <?php include('./admin-footer.php'); ?> |