]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit-form.php
Wordpress 2.6.2
[autoinstalls/wordpress.git] / wp-admin / edit-form.php
1
2 <div class="wrap">
3 <h2><?php _e('Write Post'); ?></h2>
4 <form name="post" action="post.php" method="post" id="simple">
5
6 <?php if (isset($mode) && 'bookmarklet' == $mode) : ?>
7 <input type="hidden" name="mode" value="bookmarklet" />
8 <?php endif; ?>
9 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
10 <input type="hidden" name="action" value='post' />
11
12 <div id="poststuff">
13     <fieldset id="titlediv">
14       <legend><a href="http://wordpress.org/docs/reference/post/#title" title="<?php _e('Help on titles') ?>"><?php _e('Title') ?></a></legend>
15           <div><input type="text" name="post_title" size="30" tabindex="1" value="<?php echo attribute_escape( $post->post_title ); ?>" id="title" /></div>
16     </fieldset>
17
18     <fieldset id="categorydiv">
19       <legend><a href="http://wordpress.org/docs/reference/post/#category" title="<?php _e('Help on categories') ?>"><?php _e('Categories') ?></a></legend>
20           <div><?php dropdown_categories($post->post_category); ?></div>
21     </fieldset>
22
23 <br />
24 <fieldset id="postdiv">
25     <legend><a href="http://wordpress.org/docs/reference/post/#post" title="<?php _e('Help with post field') ?>"><?php _e('Post') ?></a></legend>
26 <?php
27  $rows = get_option('default_post_edit_rows');
28  if (($rows < 3) || ($rows > 100)) {
29      $rows = 10;
30  }
31 ?>
32 <div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo $post->post_content ?></textarea></div>
33 <?php wp_nonce_field( 'autosave', 'autosavenonce', false ); ?>
34 </fieldset>
35
36
37 <script type="text/javascript">
38 <!--
39 edCanvas = document.getElementById('content');
40 //-->
41 </script>
42
43 <input type="hidden" name="post_pingback" value="<?php echo (int) get_option('default_pingback_flag') ?>" id="post_pingback" />
44
45 <p><label for="trackback"> <?php printf(__('<a href="%s" title="Help on trackbacks"><strong>TrackBack</strong> a <abbr title="Universal Resource Locator">URL</abbr></a>:</label> (Separate multiple <abbr title="Universal Resource Locator">URL</abbr>s with spaces.)'), 'http://wordpress.org/docs/reference/post/#trackback'); echo '<br />'; ?>
46         <input type="text" name="trackback_url" style="width: 360px" id="trackback" tabindex="7" /></p>
47
48 <p class="submit"><input name="saveasdraft" type="submit" id="saveasdraft" tabindex="9" value="<?php _e('Save as Draft') ?>" />
49         <input name="saveasprivate" type="submit" id="saveasprivate" tabindex="10" value="<?php _e('Save as Private') ?>" />
50
51          <?php if ( current_user_can('edit_posts') ) : ?>
52         <input name="publish" type="submit" id="publish" tabindex="6" value="<?php _e('Publish') ?>" class="button button-highlighted" />
53 <?php endif; ?>
54
55 <?php if ('bookmarklet' != $mode) {
56                 echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' .  __('Advanced Editing') . '" />';
57         } ?>
58         <input name="referredby" type="hidden" id="referredby" value="<?php if ( $refby = wp_get_referer() ) echo urlencode($refby); ?>" />
59 </p>
60
61 <?php do_action('simple_edit_form', ''); ?>
62
63 </div>
64 </form>
65
66 <script type="text/javascript">
67 try{document.getElementById('title').focus();}catch(e){}
68 </script>
69 </div>