raw
mp-wp_genesis           1 <?php
mp-wp_genesis 2 /**
mp-wp_genesis 3 * Writing settings administration panel.
mp-wp_genesis 4 *
mp-wp_genesis 5 * @package WordPress
mp-wp_genesis 6 * @subpackage Administration
mp-wp_genesis 7 */
mp-wp_genesis 8
mp-wp_genesis 9 /** WordPress Administration Bootstrap */
mp-wp_genesis 10 require_once('admin.php');
mp-wp_genesis 11
mp-wp_genesis 12 $title = __('Writing Settings');
mp-wp_genesis 13 $parent_file = 'options-general.php';
mp-wp_genesis 14
mp-wp_genesis 15 include('admin-header.php');
mp-wp_genesis 16 ?>
mp-wp_genesis 17
mp-wp_genesis 18 <div class="wrap">
mp-wp_genesis 19 <?php screen_icon(); ?>
mp-wp_genesis 20 <h2><?php echo wp_specialchars( $title ); ?></h2>
mp-wp_genesis 21
mp-wp_genesis 22 <form method="post" action="options.php">
mp-wp_genesis 23 <?php settings_fields('writing'); ?>
mp-wp_genesis 24
mp-wp_genesis 25 <table class="form-table">
mp-wp_genesis 26 <tr valign="top">
mp-wp_genesis 27 <th scope="row"><label for="default_post_edit_rows"> <?php _e('Size of the post box') ?></label></th>
mp-wp_genesis 28 <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" />
mp-wp_genesis 29 <?php _e('lines') ?></td>
mp-wp_genesis 30 </tr>
mp-wp_genesis 31 <tr valign="top">
mp-wp_genesis 32 <th scope="row"><?php _e('Formatting') ?></th>
mp-wp_genesis 33 <td><fieldset><legend class="hidden"><?php _e('Formatting') ?></legend>
mp-wp_genesis 34 <label for="use_smilies">
mp-wp_genesis 35 <input name="use_smilies" type="checkbox" id="use_smilies" value="1" <?php checked('1', get_option('use_smilies')); ?> />
mp-wp_genesis 36 <?php _e('Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics on display') ?></label><br />
mp-wp_genesis 37 <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>
mp-wp_genesis 38 </fieldset></td>
mp-wp_genesis 39 </tr>
mp-wp_genesis 40 <tr valign="top">
mp-wp_genesis 41 <th scope="row"><label for="default_category"><?php _e('Default Post Category') ?></label></th>
mp-wp_genesis 42 <td>
mp-wp_genesis 43 <?php
mp-wp_genesis 44 wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'default_category', 'orderby' => 'name', 'selected' => get_option('default_category'), 'hierarchical' => true));
mp-wp_genesis 45 ?>
mp-wp_genesis 46 </td>
mp-wp_genesis 47 </tr>
mp-wp_genesis 48 <tr valign="top">
mp-wp_genesis 49 <th scope="row"><label for="default_link_category"><?php _e('Default Link Category') ?></label></th>
mp-wp_genesis 50 <td>
mp-wp_genesis 51 <?php
mp-wp_genesis 52 wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'default_link_category', 'orderby' => 'name', 'selected' => get_option('default_link_category'), 'hierarchical' => true, 'type' => 'link'));
mp-wp_genesis 53 ?>
mp-wp_genesis 54 </td>
mp-wp_genesis 55 </tr>
mp-wp_genesis 56 <?php do_settings_fields('writing', 'default'); ?>
mp-wp_genesis 57 </table>
mp-wp_genesis 58
mp-wp_genesis 59 <h3><?php _e('Remote Publishing') ?></h3>
mp-wp_genesis 60 <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>
mp-wp_genesis 61 <table class="form-table">
mp-wp_genesis 62 <tr valign="top">
mp-wp_genesis 63 <th scope="row"><?php _e('Atom Publishing Protocol') ?></th>
mp-wp_genesis 64 <td><fieldset><legend class="hidden"><?php _e('Atom Publishing Protocol') ?></legend>
mp-wp_genesis 65 <label for="enable_app">
mp-wp_genesis 66 <input name="enable_app" type="checkbox" id="enable_app" value="1" <?php checked('1', get_option('enable_app')); ?> />
mp-wp_genesis 67 <?php _e('Enable the Atom Publishing Protocol.') ?></label><br />
mp-wp_genesis 68 </fieldset></td>
mp-wp_genesis 69 </tr>
mp-wp_genesis 70 <tr valign="top">
mp-wp_genesis 71 <th scope="row"><?php _e('XML-RPC') ?></th>
mp-wp_genesis 72 <td><fieldset><legend class="hidden"><?php _e('XML-RPC') ?></legend>
mp-wp_genesis 73 <label for="enable_xmlrpc">
mp-wp_genesis 74 <input name="enable_xmlrpc" type="checkbox" id="enable_xmlrpc" value="1" <?php checked('1', get_option('enable_xmlrpc')); ?> />
mp-wp_genesis 75 <?php _e('Enable the WordPress, Movable Type, MetaWeblog and Blogger XML-RPC publishing protocols.') ?></label><br />
mp-wp_genesis 76 </fieldset></td>
mp-wp_genesis 77 </tr>
mp-wp_genesis 78 <?php do_settings_fields('writing', 'remote_publishing'); ?>
mp-wp_genesis 79 </table>
mp-wp_genesis 80
mp-wp_genesis 81 <h3><?php _e('Update Services') ?></h3>
mp-wp_genesis 82
mp-wp_genesis 83 <?php if ( get_option('blog_public') ) : ?>
mp-wp_genesis 84
mp-wp_genesis 85 <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>
mp-wp_genesis 86
mp-wp_genesis 87 <textarea name="ping_sites" id="ping_sites" class="large-text" rows="3"><?php form_option('ping_sites'); ?></textarea>
mp-wp_genesis 88
mp-wp_genesis 89 <?php else : ?>
mp-wp_genesis 90
mp-wp_genesis 91 <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>
mp-wp_genesis 92
mp-wp_genesis 93 <?php endif; ?>
mp-wp_genesis 94
mp-wp_genesis 95 <?php do_settings_sections('writing'); ?>
mp-wp_genesis 96
mp-wp_genesis 97 <p class="submit">
mp-wp_genesis 98 <input type="submit" name="Submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
mp-wp_genesis 99 </p>
mp-wp_genesis 100 </form>
mp-wp_genesis 101 </div>
mp-wp_genesis 102
mp-wp_genesis 103 <?php include('./admin-footer.php') ?>