Projects : mp-wp : mp-wp_genesis

mp-wp/wp-admin/options-misc.php

Dir - Raw

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