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'); ?>
|
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')); ?> />
|
2010-03-01 07:13:15 -05:00
|
|
|
<?php _e('Track links’ update times') ?>
|
2008-03-17 22:07:49 -04:00
|
|
|
</label>
|
2008-02-22 02:43:06 -05:00
|
|
|
</th>
|
|
|
|
</tr>
|
2010-03-01 07:13:15 -05:00
|
|
|
<?php do_settings_fields('misc', 'default'); ?>
|
2006-01-09 17:24:57 -05:00
|
|
|
</table>
|
2010-03-01 07:13:15 -05:00
|
|
|
|
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
|
|
|
|
2010-03-01 07:13:15 -05:00
|
|
|
<?php include('./admin-footer.php'); ?>
|