-
+ CE5DD19582EFD856B7B9F0CEC13CDE48A400ED1535E83383619A236F7490E8779BDB9AE7A1FCB28BAF6288442CE31205C946EFC24001E074CDBAF5E41367AAF0
mp-wp/wp-admin/options-writing.php
(0 . 0)(1 . 135)
54267 <?php
54268 /**
54269 * Writing settings administration panel.
54270 *
54271 * @package WordPress
54272 * @subpackage Administration
54273 */
54274
54275 /** WordPress Administration Bootstrap */
54276 require_once('admin.php');
54277
54278 $title = __('Writing Settings');
54279 $parent_file = 'options-general.php';
54280
54281 include('admin-header.php');
54282 ?>
54283
54284 <div class="wrap">
54285 <?php screen_icon(); ?>
54286 <h2><?php echo wp_specialchars( $title ); ?></h2>
54287
54288 <form method="post" action="options.php">
54289 <?php settings_fields('writing'); ?>
54290
54291 <table class="form-table">
54292 <tr valign="top">
54293 <th scope="row"><label for="default_post_edit_rows"> <?php _e('Size of the post box') ?></label></th>
54294 <td><input name="default_post_edit_rows" type="text" id="default_post_edit_rows" value="<?php form_option('default_post_edit_rows'); ?>" class="small-text" />
54295 <?php _e('lines') ?></td>
54296 </tr>
54297 <tr valign="top">
54298 <th scope="row"><?php _e('Formatting') ?></th>
54299 <td><fieldset><legend class="hidden"><?php _e('Formatting') ?></legend>
54300 <label for="use_smilies">
54301 <input name="use_smilies" type="checkbox" id="use_smilies" value="1" <?php checked('1', get_option('use_smilies')); ?> />
54302 <?php _e('Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics on display') ?></label><br />
54303 <label for="use_balanceTags"><input name="use_balanceTags" type="checkbox" id="use_balanceTags" value="1" <?php checked('1', get_option('use_balanceTags')); ?> /> <?php _e('WordPress should correct invalidly nested XHTML automatically') ?></label>
54304 </fieldset></td>
54305 </tr>
54306 <tr valign="top">
54307 <th scope="row"><label for="default_category"><?php _e('Default Post Category') ?></label></th>
54308 <td>
54309 <?php
54310 wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'default_category', 'orderby' => 'name', 'selected' => get_option('default_category'), 'hierarchical' => true));
54311 ?>
54312 </td>
54313 </tr>
54314 <tr valign="top">
54315 <th scope="row"><label for="default_link_category"><?php _e('Default Link Category') ?></label></th>
54316 <td>
54317 <?php
54318 wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'default_link_category', 'orderby' => 'name', 'selected' => get_option('default_link_category'), 'hierarchical' => true, 'type' => 'link'));
54319 ?>
54320 </td>
54321 </tr>
54322 <?php do_settings_fields('writing', 'default'); ?>
54323 </table>
54324
54325 <h3><?php _e('Remote Publishing') ?></h3>
54326 <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>
54327 <table class="form-table">
54328 <tr valign="top">
54329 <th scope="row"><?php _e('Atom Publishing Protocol') ?></th>
54330 <td><fieldset><legend class="hidden"><?php _e('Atom Publishing Protocol') ?></legend>
54331 <label for="enable_app">
54332 <input name="enable_app" type="checkbox" id="enable_app" value="1" <?php checked('1', get_option('enable_app')); ?> />
54333 <?php _e('Enable the Atom Publishing Protocol.') ?></label><br />
54334 </fieldset></td>
54335 </tr>
54336 <tr valign="top">
54337 <th scope="row"><?php _e('XML-RPC') ?></th>
54338 <td><fieldset><legend class="hidden"><?php _e('XML-RPC') ?></legend>
54339 <label for="enable_xmlrpc">
54340 <input name="enable_xmlrpc" type="checkbox" id="enable_xmlrpc" value="1" <?php checked('1', get_option('enable_xmlrpc')); ?> />
54341 <?php _e('Enable the WordPress, Movable Type, MetaWeblog and Blogger XML-RPC publishing protocols.') ?></label><br />
54342 </fieldset></td>
54343 </tr>
54344 <?php do_settings_fields('writing', 'remote_publishing'); ?>
54345 </table>
54346
54347 <h3><?php _e('Post via e-mail') ?></h3>
54348 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: <kbd>%s</kbd>, <kbd>%s</kbd>, <kbd>%s</kbd>.'), wp_generate_password(8, false), wp_generate_password(8, false), wp_generate_password(8, false)) ?></p>
54349
54350 <table class="form-table">
54351 <tr valign="top">
54352 <th scope="row"><label for="mailserver_url"><?php _e('Mail Server') ?></label></th>
54353 <td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" class="regular-text" />
54354 <label for="mailserver_port"><?php _e('Port') ?></label>
54355 <input name="mailserver_port" type="text" id="mailserver_port" value="<?php form_option('mailserver_port'); ?>" class="small-text" />
54356 </td>
54357 </tr>
54358 <tr valign="top">
54359 <th scope="row"><label for="mailserver_login"><?php _e('Login Name') ?></label></th>
54360 <td><input name="mailserver_login" type="text" id="mailserver_login" value="<?php form_option('mailserver_login'); ?>" class="regular-text" /></td>
54361 </tr>
54362 <tr valign="top">
54363 <th scope="row"><label for="mailserver_pass"><?php _e('Password') ?></label></th>
54364 <td>
54365 <input name="mailserver_pass" type="text" id="mailserver_pass" value="<?php form_option('mailserver_pass'); ?>" class="regular-text" />
54366 </td>
54367 </tr>
54368 <tr valign="top">
54369 <th scope="row"><label for="default_email_category"><?php _e('Default Mail Category') ?></label></th>
54370 <td>
54371 <?php
54372 wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'default_email_category', 'orderby' => 'name', 'selected' => get_option('default_email_category'), 'hierarchical' => true));
54373 ?>
54374 </td>
54375 </tr>
54376 <?php do_settings_fields('writing', 'post_via_email'); ?>
54377 </table>
54378
54379 <h3><?php _e('Update Services') ?></h3>
54380
54381 <?php if ( get_option('blog_public') ) : ?>
54382
54383 <p><label for="ping_sites"><?php _e('When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="http://codex.wordpress.org/Update_Services">Update Services</a> on the Codex. Separate multiple service <abbr title="Universal Resource Locator">URL</abbr>s with line breaks.') ?></label></p>
54384
54385 <textarea name="ping_sites" id="ping_sites" class="large-text" rows="3"><?php form_option('ping_sites'); ?></textarea>
54386
54387 <?php else : ?>
54388
54389 <p><?php printf(__('WordPress is not notifying any <a href="http://codex.wordpress.org/Update_Services">Update Services</a> because of your blog\'s <a href="%s">privacy settings</a>.'), 'options-privacy.php'); ?></p>
54390
54391 <?php endif; ?>
54392
54393 <?php do_settings_sections('writing'); ?>
54394
54395 <p class="submit">
54396 <input type="submit" name="Submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
54397 </p>
54398 </form>
54399 </div>
54400
54401 <?php include('./admin-footer.php') ?>