Changeset 21818 for trunk/wp-admin/options-writing.php
- Timestamp:
- 09/11/2012 08:11:39 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-writing.php
r21804 r21818 122 122 <?php endif; ?> 123 123 124 <?php do_settings_fields('writing', 'default'); ?> 124 <?php 125 do_settings_fields('writing', 'default'); 126 do_settings_fields('writing', 'remote_publishing'); // A deprecated section. 127 ?> 125 128 </table> 126 129 … … 169 172 <?php } ?> 170 173 171 <h3><?php _e('Remote Publishing') ?></h3>172 <p><?php printf(__('To post to WordPress from a desktop blogging client or remote website that uses the Atom Publishing Protocol or one of the XML-RPC publishing interfaces you must enable them below.')) ?></p>173 <table class="form-table">174 <tr valign="top">175 <th scope="row"><?php _e('Atom Publishing Protocol') ?></th>176 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Atom Publishing Protocol') ?></span></legend>177 <label for="enable_app">178 <input name="enable_app" type="checkbox" id="enable_app" value="1" <?php checked('1', get_option('enable_app')); ?> />179 <?php _e('Enable the Atom Publishing Protocol.') ?></label><br />180 </fieldset></td>181 </tr>182 <?php do_settings_fields('writing', 'remote_publishing'); ?>183 </table>184 185 174 <?php if ( apply_filters( 'enable_update_services_configuration', true ) ) { ?> 186 175 <h3><?php _e('Update Services') ?></h3>
Note: See TracChangeset
for help on using the changeset viewer.