2004-04-11 04:15:10 -04:00
|
|
|
<?php
|
2008-08-16 03:27:34 -04:00
|
|
|
/**
|
|
|
|
* Miscellaneous settings administration panel.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
2004-10-18 23:03:06 -04:00
|
|
|
require_once('admin.php');
|
2006-11-18 02:31:29 -05:00
|
|
|
|
2009-08-01 17:12:17 -04:00
|
|
|
if ( ! current_user_can('manage_options') )
|
|
|
|
wp_die(__('You do not have sufficient permissions to manage options for this blog.'));
|
|
|
|
|
2008-02-13 19:39:38 -05:00
|
|
|
$title = __('Miscellaneous Settings');
|
2006-11-18 02:31:29 -05:00
|
|
|
$parent_file = 'options-general.php';
|
|
|
|
|
2004-10-18 23:03:06 -04:00
|
|
|
include('admin-header.php');
|
|
|
|
|
2004-04-11 04:15:10 -04:00
|
|
|
?>
|
2006-11-19 02:56:05 -05:00
|
|
|
|
|
|
|
<div class="wrap">
|
2008-11-26 08:51:25 -05:00
|
|
|
<?php screen_icon(); ?>
|
2009-05-18 11:11:07 -04:00
|
|
|
<h2><?php echo esc_html( $title ); ?></h2>
|
2008-10-17 16:02:03 -04:00
|
|
|
|
2006-01-09 17:24:57 -05:00
|
|
|
<form method="post" action="options.php">
|
2008-11-28 16:57:58 -05:00
|
|
|
<?php settings_fields('misc'); ?>
|
2010-01-12 16:11:52 -05:00
|
|
|
<?php if ( !is_multisite() ) { ?>
|
2008-10-25 15:55:56 -04:00
|
|
|
<h3><?php _e('Uploading Files'); ?></h3>
|
2008-02-23 23:33:10 -05:00
|
|
|
<table class="form-table">
|
2006-01-10 00:16:17 -05:00
|
|
|
<tr valign="top">
|
2008-05-04 06:37:06 -04:00
|
|
|
<th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
|
2009-12-15 12:53:51 -05:00
|
|
|
<td><input name="upload_path" type="text" id="upload_path" value="<?php echo esc_attr(get_option('upload_path')); ?>" class="regular-text code" />
|
2009-04-29 22:33:22 -04:00
|
|
|
<span class="description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span>
|
2006-01-10 00:16:17 -05:00
|
|
|
</td>
|
|
|
|
</tr>
|
2008-02-11 01:35:24 -05:00
|
|
|
|
|
|
|
<tr valign="top">
|
2008-10-25 15:55:56 -04:00
|
|
|
<th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th>
|
2009-05-05 15:43:53 -04:00
|
|
|
<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" />
|
2009-04-29 22:33:22 -04:00
|
|
|
<span class="description"><?php _e('Configuring this is optional. By default, it should be blank.'); ?></span>
|
2008-02-11 01:35:24 -05:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2006-01-10 00:16:17 -05:00
|
|
|
<tr>
|
2008-03-17 22:07:49 -04:00
|
|
|
<th scope="row" colspan="2" class="th-full">
|
2006-01-09 22:14:34 -05:00
|
|
|
<label for="uploads_use_yearmonth_folders">
|
2008-09-05 20:03:03 -04:00
|
|
|
<input name="uploads_use_yearmonth_folders" type="checkbox" id="uploads_use_yearmonth_folders" value="1"<?php checked('1', get_option('uploads_use_yearmonth_folders')); ?> />
|
2006-01-09 22:14:34 -05:00
|
|
|
<?php _e('Organize my uploads into month- and year-based folders'); ?>
|
|
|
|
</label>
|
2008-02-22 02:43:06 -05:00
|
|
|
</th>
|
|
|
|
</tr>
|
2008-09-09 18:31:22 -04:00
|
|
|
<?php do_settings_fields('misc', 'default'); ?>
|
2008-02-22 02:43:06 -05:00
|
|
|
</table>
|
2008-03-17 22:07:49 -04:00
|
|
|
|
2008-03-24 04:28:15 -04:00
|
|
|
<table class="form-table">
|
|
|
|
|
2008-02-22 02:43:06 -05:00
|
|
|
<tr>
|
2008-03-17 22:07:49 -04:00
|
|
|
<th scope="row" class="th-full">
|
|
|
|
<label for="use_linksupdate">
|
2008-09-05 20:03:03 -04:00
|
|
|
<input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1"<?php checked('1', get_option('use_linksupdate')); ?> />
|
2008-03-17 22:07:49 -04:00
|
|
|
<?php _e('Track Links’ Update Times') ?>
|
|
|
|
</label>
|
2008-02-22 02:43:06 -05:00
|
|
|
</th>
|
|
|
|
</tr>
|
2008-03-17 22:07:49 -04:00
|
|
|
|
2006-01-09 17:24:57 -05:00
|
|
|
</table>
|
2010-01-12 16:11:52 -05:00
|
|
|
<?php } ?>
|
2008-09-09 18:31:22 -04:00
|
|
|
<?php do_settings_sections('misc'); ?>
|
|
|
|
|
2005-08-07 15:23:41 -04:00
|
|
|
<p class="submit">
|
2009-05-05 15:43:53 -04:00
|
|
|
<input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />
|
2005-08-07 15:23:41 -04:00
|
|
|
</p>
|
2008-10-13 21:18:52 -04:00
|
|
|
|
2006-11-19 02:56:05 -05:00
|
|
|
</form>
|
2004-09-04 20:24:28 -04:00
|
|
|
</div>
|
2004-04-24 19:25:53 -04:00
|
|
|
|
2008-10-27 16:41:05 -04:00
|
|
|
<?php include('./admin-footer.php'); ?>
|