Make WordPress Core


Ignore:
Timestamp:
10/25/2008 07:55:56 PM (17 years ago)
Author:
westi
Message:

First stab at better options pages. WIP.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-misc.php

    r9320 r9343  
    2525<?php wp_nonce_field('misc-options') ?>
    2626
    27 <p class="submit submit-top">
    28     <input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" class="button" />
    29 </p>
    30 
    31 <h3><?php _e('Uploading'); ?></h3>
     27<h3><?php _e('Uploading Files'); ?></h3>
    3228<table class="form-table">
    3329<tr valign="top">
    3430<th scope="row"><label for="upload_path"><?php _e('Store uploads in this folder'); ?></label></th>
    3531<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" />
    36 <br />
    37 <?php _e('Default is <code>wp-content/uploads</code>'); ?>
     32<span class="setting-description"><?php _e('Default is <code>wp-content/uploads</code>'); ?></span>
    3833</td>
    3934</tr>
    4035
    4136<tr valign="top">
    42 <th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files (optional)'); ?></label></th>
     37<th scope="row"><label for="upload_url_path"><?php _e('Full URL path to files'); ?></label></th>
    4338<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" />
     39<span class="setting-description"><?php _e('Configuring this is optional by default it should be blank'); ?></span>
    4440</td>
    4541</tr>
Note: See TracChangeset for help on using the changeset viewer.