2004-02-25 14:03:49 -05:00
< ? php
2004-10-18 23:03:06 -04:00
require_once ( 'admin.php' );
2006-11-18 02:31:29 -05:00
2008-02-13 19:39:38 -05:00
$title = __ ( 'Writing Settings' );
2006-11-18 02:31:29 -05:00
$parent_file = 'options-general.php' ;
2004-10-18 23:03:06 -04:00
include ( 'admin-header.php' );
2004-02-25 14:03:49 -05:00
?>
2004-04-11 04:15:10 -04:00
2007-09-03 19:32:58 -04:00
< div class = " wrap " >
2008-02-13 19:39:38 -05:00
< h2 >< ? php _e ( 'Writing Settings' ) ?> </h2>
2007-09-03 19:32:58 -04:00
< form method = " post " action = " options.php " >
2006-05-02 18:36:06 -04:00
< ? php wp_nonce_field ( 'update-options' ) ?>
2007-12-23 05:05:37 -05:00
2008-02-14 10:33:56 -05:00
< table class = " niceblue " >
2007-09-03 19:32:58 -04:00
< tr valign = " top " >
2008-02-14 00:19:39 -05:00
< th scope = " row " > < ? php _e ( 'Size of the post box' ) ?> </th>
2007-09-03 19:32:58 -04:00
< td >< input name = " default_post_edit_rows " type = " text " id = " default_post_edit_rows " value = " <?php form_option('default_post_edit_rows'); ?> " size = " 2 " style = " width: 1.5em; " />
< ? php _e ( 'lines' ) ?> </td>
</ tr >
2005-08-04 04:37:46 -04:00
< tr valign = " top " >
2008-02-14 00:19:39 -05:00
< th scope = " row " >< ? php _e ( 'Formatting' ) ?> </th>
2005-08-04 04:37:46 -04:00
< td >
< label for = " use_smilies " >
2006-08-30 17:46:31 -04:00
< input name = " use_smilies " type = " checkbox " id = " use_smilies " value = " 1 " < ? php checked ( '1' , get_option ( 'use_smilies' )); ?> />
2005-11-28 18:05:12 -05:00
< ? php _e ( 'Convert emoticons like <code>:-)</code> and <code>:-P</code> to graphics on display' ) ?> </label><br />
2006-08-30 17:46:31 -04:00
< 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>
2005-08-04 04:37:46 -04:00
</ td >
</ tr >
2005-08-07 15:23:41 -04:00
< tr valign = " top " >
2008-02-14 00:19:39 -05:00
< th scope = " row " >< ? php _e ( 'Default Post Category' ) ?> </th>
2005-08-07 15:23:41 -04:00
< td >< select name = " default_category " id = " default_category " >
2004-05-31 11:43:45 -04:00
< ? php
2007-05-27 13:57:15 -04:00
$categories = get_categories ( 'get=all' );
2004-05-31 11:43:45 -04:00
foreach ( $categories as $category ) :
2007-08-31 19:55:56 -04:00
$category = sanitize_category ( $category );
2007-05-27 13:57:15 -04:00
if ( $category -> term_id == get_option ( 'default_category' )) $selected = " selected='selected' " ;
2004-05-31 11:43:45 -04:00
else $selected = '' ;
2007-05-27 13:57:15 -04:00
echo " \n \t <option value=' $category->term_id ' $selected > $category->name </option> " ;
2004-05-31 11:43:45 -04:00
endforeach ;
?>
2005-08-07 15:23:41 -04:00
</ select ></ td >
</ tr >
2006-02-26 23:57:30 -05:00
< tr valign = " top " >
2008-02-14 00:19:39 -05:00
< th scope = " row " >< ? php _e ( 'Default Link Category' ) ?> </th>
2006-02-26 23:57:30 -05:00
< td >< select name = " default_link_category " id = " default_link_category " >
< ? php
2007-08-31 19:55:56 -04:00
$link_categories = get_terms ( 'link_category' , 'get=all' );
foreach ( $link_categories as $category ) :
$category = sanitize_term ( $category , 'link_category' );
2007-05-27 13:57:15 -04:00
if ( $category -> term_id == get_option ( 'default_link_category' )) $selected = " selected='selected' " ;
2006-02-26 23:57:30 -05:00
else $selected = '' ;
2007-05-27 13:57:15 -04:00
echo " \n \t <option value=' $category->term_id ' $selected > $category->name </option> " ;
2006-02-26 23:57:30 -05:00
endforeach ;
?>
</ select ></ td >
</ tr >
2004-12-12 01:31:01 -05:00
</ table >
2004-09-15 11:09:39 -04:00
2008-02-13 21:40:17 -05:00
< h3 >< ? php _e ( 'Post via e-mail' ) ?> </h3>
2007-12-15 00:31:16 -05:00
< 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: <code>%s</code>, <code>%s</code>, <code>%s</code>.' ), wp_generate_password (), wp_generate_password (), wp_generate_password ()) ?> </p>
2005-08-07 15:23:41 -04:00
2008-02-14 10:33:56 -05:00
< table class = " niceblue " >
2005-08-07 15:23:41 -04:00
< tr valign = " top " >
2008-02-14 00:19:39 -05:00
< th scope = " row " >< ? php _e ( 'Mail Server' ) ?> </th>
2005-08-07 15:23:41 -04:00
< td >< input name = " mailserver_url " type = " text " id = " mailserver_url " value = " <?php form_option('mailserver_url'); ?> " size = " 40 " />
2006-11-19 02:56:05 -05:00
< label for = " mailserver_port " >< ? php _e ( 'Port:' ) ?> </label>
2005-08-07 15:23:41 -04:00
< input name = " mailserver_port " type = " text " id = " mailserver_port " value = " <?php form_option('mailserver_port'); ?> " size = " 6 " />
</ td >
</ tr >
< tr valign = " top " >
2008-02-14 00:19:39 -05:00
< th scope = " row " >< ? php _e ( 'Login Name' ) ?> </th>
2005-08-07 15:23:41 -04:00
< td >< input name = " mailserver_login " type = " text " id = " mailserver_login " value = " <?php form_option('mailserver_login'); ?> " size = " 40 " /></ td >
</ tr >
< tr valign = " top " >
2008-02-14 00:19:39 -05:00
< th scope = " row " >< ? php _e ( 'Password' ) ?> </th>
2005-08-07 15:23:41 -04:00
< td >
< input name = " mailserver_pass " type = " text " id = " mailserver_pass " value = " <?php form_option('mailserver_pass'); ?> " size = " 40 " />
</ td >
</ tr >
< tr valign = " top " >
2008-02-14 00:19:39 -05:00
< th scope = " row " >< ? php _e ( 'Default Mail Category' ) ?> </th>
2005-08-07 15:23:41 -04:00
< td >< select name = " default_email_category " id = " default_email_category " >
2004-04-15 03:53:45 -04:00
< ? php
2004-05-31 11:43:45 -04:00
//Alreay have $categories from default_category
2004-04-15 03:53:45 -04:00
foreach ( $categories as $category ) :
2007-08-31 19:55:56 -04:00
$category = sanitize_category ( $category );
2006-08-30 17:46:31 -04:00
if ( $category -> cat_ID == get_option ( 'default_email_category' )) $selected = " selected='selected' " ;
2004-04-15 03:53:45 -04:00
else $selected = '' ;
2004-09-15 11:09:39 -04:00
echo " \n \t <option value=' $category->cat_ID ' $selected > $category->cat_name </option> " ;
2004-04-15 03:53:45 -04:00
endforeach ;
?>
2005-08-07 15:23:41 -04:00
</ select ></ td >
</ tr >
</ table >
2005-02-14 18:25:16 -05:00
2008-02-13 21:40:17 -05:00
< h3 >< ? php _e ( 'Update Services' ) ?> </h3>
2006-10-04 06:27:53 -04:00
< ? php if ( get_option ( 'blog_public' ) ) : ?>
2006-08-30 12:40:17 -04:00
< p >< ? 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.' ) ?> </p>
2005-08-07 15:23:41 -04:00
< textarea name = " ping_sites " id = " ping_sites " style = " width: 98%; " rows = " 3 " cols = " 50 " >< ? php form_option ( 'ping_sites' ); ?> </textarea>
2006-10-04 06:27:53 -04:00
< ? php else : ?>
2007-02-27 18:17:13 -05:00
< 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' ); ?>
2006-10-04 06:27:53 -04:00
< ? php endif ; ?>
2005-08-07 15:23:41 -04:00
< p class = " submit " >
2006-11-19 02:56:05 -05:00
< input type = " hidden " name = " action " value = " update " />
2006-12-01 06:16:31 -05:00
< input type = " hidden " name = " page_options " value = " default_post_edit_rows,use_smilies,ping_sites,mailserver_url,mailserver_port,mailserver_login,mailserver_pass,default_category,default_email_category,use_balanceTags,default_link_category " />
2008-02-13 21:46:08 -05:00
< input type = " submit " name = " Submit " value = " <?php _e('Save Changes') ?> " />
2004-09-15 11:09:39 -04:00
</ p >
2006-11-19 02:56:05 -05:00
</ form >
</ div >
2004-09-15 11:09:39 -04:00
2007-12-15 00:31:16 -05:00
< ? php include ( './admin-footer.php' ) ?>