Changeset 27029 for trunk/src/wp-admin/options-general.php
- Timestamp:
- 01/24/2014 07:05:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-general.php
r26571 r27029 91 91 92 92 <table class="form-table"> 93 <tr valign="top">93 <tr> 94 94 <th scope="row"><label for="blogname"><?php _e('Site Title') ?></label></th> 95 95 <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" class="regular-text" /></td> 96 96 </tr> 97 <tr valign="top">97 <tr> 98 98 <th scope="row"><label for="blogdescription"><?php _e('Tagline') ?></label></th> 99 99 <td><input name="blogdescription" type="text" id="blogdescription" value="<?php form_option('blogdescription'); ?>" class="regular-text" /> … … 101 101 </tr> 102 102 <?php if ( !is_multisite() ) { ?> 103 <tr valign="top">103 <tr> 104 104 <th scope="row"><label for="siteurl"><?php _e('WordPress Address (URL)') ?></label></th> 105 105 <td><input name="siteurl" type="text" id="siteurl" value="<?php form_option('siteurl'); ?>"<?php disabled( defined( 'WP_SITEURL' ) ); ?> class="regular-text code<?php if ( defined( 'WP_SITEURL' ) ) echo ' disabled' ?>" /></td> 106 106 </tr> 107 <tr valign="top">107 <tr> 108 108 <th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th> 109 109 <td><input name="home" type="text" id="home" value="<?php form_option('home'); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" /> 110 110 <p class="description"><?php _e('Enter the address here if you want your site homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></p></td> 111 111 </tr> 112 <tr valign="top">112 <tr> 113 113 <th scope="row"><label for="admin_email"><?php _e('E-mail Address') ?> </label></th> 114 114 <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text ltr" /> 115 115 <p class="description"><?php _e('This address is used for admin purposes, like new user notification.') ?></p></td> 116 116 </tr> 117 <tr valign="top">117 <tr> 118 118 <th scope="row"><?php _e('Membership') ?></th> 119 119 <td> <fieldset><legend class="screen-reader-text"><span><?php _e('Membership') ?></span></legend><label for="users_can_register"> … … 122 122 </fieldset></td> 123 123 </tr> 124 <tr valign="top">124 <tr> 125 125 <th scope="row"><label for="default_role"><?php _e('New User Default Role') ?></label></th> 126 126 <td> … … 129 129 </tr> 130 130 <?php } else { ?> 131 <tr valign="top">131 <tr> 132 132 <th scope="row"><label for="new_admin_email"><?php _e('E-mail Address') ?> </label></th> 133 133 <td><input name="new_admin_email" type="text" id="new_admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text ltr" /> … … 307 307 if ( is_multisite() && !empty( $languages ) ): 308 308 ?> 309 <tr valign="top">309 <tr> 310 310 <th width="33%" scope="row"><?php _e('Site Language') ?></th> 311 311 <td>
Note: See TracChangeset
for help on using the changeset viewer.