2004-04-11 08:15:10 +00:00
|
|
|
<?php
|
2004-10-19 03:03:06 +00:00
|
|
|
require_once('admin.php');
|
2006-11-18 07:31:29 +00:00
|
|
|
|
2008-02-14 00:39:38 +00:00
|
|
|
$title = __('Miscellaneous Settings');
|
2006-11-18 07:31:29 +00:00
|
|
|
$parent_file = 'options-general.php';
|
|
|
|
|
2004-10-19 03:03:06 +00:00
|
|
|
include('admin-header.php');
|
|
|
|
|
2004-04-11 08:15:10 +00:00
|
|
|
?>
|
2006-11-19 07:56:05 +00:00
|
|
|
|
|
|
|
<div class="wrap">
|
2008-02-14 00:39:38 +00:00
|
|
|
<h2><?php _e('Miscellaneous Settings') ?></h2>
|
2006-01-09 22:24:57 +00:00
|
|
|
<form method="post" action="options.php">
|
2006-05-02 22:36:06 +00:00
|
|
|
<?php wp_nonce_field('update-options') ?>
|
2008-02-14 02:40:17 +00:00
|
|
|
<h3><?php _e('Uploading'); ?></h3>
|
2008-02-14 15:33:56 +00:00
|
|
|
<table class="niceblue">
|
2006-01-10 05:16:17 +00:00
|
|
|
<tr valign="top">
|
2008-02-14 05:19:39 +00:00
|
|
|
<th scope="row"><?php _e('Store uploads in this folder'); ?></th>
|
2006-12-21 10:10:04 +00:00
|
|
|
<td><input name="upload_path" type="text" id="upload_path" class="code" value="<?php echo attribute_escape(str_replace(ABSPATH, '', get_option('upload_path'))); ?>" size="40" />
|
2006-01-10 03:14:34 +00:00
|
|
|
<br />
|
|
|
|
<?php _e('Default is <code>wp-content/uploads</code>'); ?>
|
2006-01-10 05:16:17 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2008-02-11 06:35:24 +00:00
|
|
|
|
|
|
|
<tr valign="top">
|
2008-02-14 05:19:39 +00:00
|
|
|
<th scope="row"><?php _e('Full URL path to files (optional)'); ?></th>
|
2008-02-11 06:35:24 +00:00
|
|
|
<td><input name="upload_url_path" type="text" id="upload_url_path" class="code" value="<?php echo attribute_escape( get_option('upload_url_path')); ?>" size="40" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2006-01-10 05:16:17 +00:00
|
|
|
<tr>
|
|
|
|
<td></td>
|
2006-01-10 03:14:34 +00:00
|
|
|
<td>
|
|
|
|
<label for="uploads_use_yearmonth_folders">
|
2006-08-30 21:46:31 +00: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-10 03:14:34 +00:00
|
|
|
<?php _e('Organize my uploads into month- and year-based folders'); ?>
|
|
|
|
</label>
|
2006-01-10 05:16:17 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2006-01-09 22:24:57 +00:00
|
|
|
</table>
|
|
|
|
|
2006-08-30 21:46:31 +00:00
|
|
|
<p><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_option('use_linksupdate')); ?> />
|
2007-03-07 01:35:39 +00:00
|
|
|
<label for="use_linksupdate"><?php _e('Track Links’ Update Times') ?></label></p>
|
2005-08-07 19:23:41 +00:00
|
|
|
<p>
|
2006-08-30 21:46:31 +00:00
|
|
|
<label><input type="checkbox" name="hack_file" value="1" <?php checked('1', get_option('hack_file')); ?> /> <?php _e('Use legacy <code>my-hacks.php</code> file support') ?></label>
|
2005-08-07 19:23:41 +00:00
|
|
|
</p>
|
2006-01-09 22:24:57 +00:00
|
|
|
|
2005-08-07 19:23:41 +00:00
|
|
|
<p class="submit">
|
|
|
|
<input type="hidden" name="action" value="update" />
|
2008-02-11 06:35:24 +00:00
|
|
|
<input type="hidden" name="page_options" value="hack_file,use_linksupdate,uploads_use_yearmonth_folders,upload_path,upload_url_path" />
|
2008-02-14 02:46:08 +00:00
|
|
|
<input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" />
|
2005-08-07 19:23:41 +00:00
|
|
|
</p>
|
2006-11-19 07:56:05 +00:00
|
|
|
</form>
|
2004-09-05 00:24:28 +00:00
|
|
|
</div>
|
2004-04-24 23:25:53 +00:00
|
|
|
|
2004-09-05 00:24:28 +00:00
|
|
|
<?php include('./admin-footer.php'); ?>
|