]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit-form.php
Wordpress 2.3.3
[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" name="user_ID" value="<?php echo (int) $user_ID ?>" />
10 <input type="hidden" name="action" value='post' />
11
12 <script type="text/javascript">
13 <!--
14 function focusit() { // focus on first input field
15         document.getElementById('title').focus();
16 }
17 addLoadEvent(focusit);
18 //-->
19 </script>
20
21 <div id="poststuff">
22     <fieldset id="titlediv">
23       <legend><a href="http://wordpress.org/docs/reference/post/#title" title="<?php _e('Help on titles') ?>"><?php _e('Title') ?></a></legend>
24           <div><input type="text" name="post_title" size="30" tabindex="1" value="<?php echo attribute_escape( $post->post_title ); ?>" id="title" /></div>
25     </fieldset>
26
27     <fieldset id="categorydiv">
28       <legend><a href="http://wordpress.org/docs/reference/post/#category" title="<?php _e('Help on categories') ?>"><?php _e('Categories') ?></a></legend>
29           <div><?php dropdown_categories($post->post_category); ?></div>
30     </fieldset>
31
32 <br />
33 <fieldset id="postdiv">
34     <legend><a href="http://wordpress.org/docs/reference/post/#post" title="<?php _e('Help with post field') ?>"><?php _e('Post') ?></a></legend>
35 <?php
36  $rows = get_option('default_post_edit_rows');
37  if (($rows < 3) || ($rows > 100)) {
38      $rows = 10;
39  }
40 ?>
41 <div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo $post->post_content ?></textarea></div>
42 </fieldset>
43
44
45 <script type="text/javascript">
46 <!--
47 edCanvas = document.getElementById('content');
48 //-->
49 </script>
50
51 <input type="hidden" name="post_pingback" value="<?php echo (int) get_option('default_pingback_flag') ?>" id="post_pingback" />
52
53 <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 />'; ?>
54         <input type="text" name="trackback_url" style="width: 360px" id="trackback" tabindex="7" /></p>
55
56 <p class="submit"><input name="saveasdraft" type="submit" id="saveasdraft" tabindex="9" value="<?php _e('Save as Draft') ?>" />
57         <input name="saveasprivate" type="submit" id="saveasprivate" tabindex="10" value="<?php _e('Save as Private') ?>" />
58
59          <?php if ( current_user_can('edit_posts') ) : ?>
60         <input name="publish" type="submit" id="publish" tabindex="6" style="font-weight: bold;" value="<?php _e('Publish') ?>" />
61 <?php endif; ?>
62
63 <?php if ('bookmarklet' != $mode) {
64                 echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' .  __('Advanced Editing &raquo;') . '" />';
65         } ?>
66         <input name="referredby" type="hidden" id="referredby" value="<?php if ( $refby = wp_get_referer() ) echo urlencode($refby); ?>" />
67 </p>
68
69 <?php do_action('simple_edit_form', ''); ?>
70
71 </div>
72 </form>
73
74 </div>