2003-10-13 20:54:09 -04:00
|
|
|
|
2003-09-24 18:00:00 -04:00
|
|
|
<div class="wrap">
|
2005-02-10 22:32:24 -05:00
|
|
|
<h2><?php _e('Write Post'); ?></h2>
|
2004-09-14 06:45:30 -04:00
|
|
|
<form name="post" action="post.php" method="post" id="simple">
|
2004-01-02 19:13:11 -05:00
|
|
|
|
2004-09-14 08:41:09 -04:00
|
|
|
<?php if (isset($mode) && 'bookmarklet' == $mode) : ?>
|
|
|
|
<input type="hidden" name="mode" value="bookmarklet" />
|
|
|
|
<?php endif; ?>
|
2003-09-24 18:00:00 -04:00
|
|
|
<input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" />
|
2004-09-14 08:41:09 -04:00
|
|
|
<input type="hidden" name="action" value='post' />
|
2003-09-24 18:00:00 -04:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
2003-12-05 04:41:27 -05:00
|
|
|
<!--
|
2003-09-24 18:00:00 -04:00
|
|
|
function focusit() {
|
|
|
|
// focus on first input field
|
2004-09-14 06:45:30 -04:00
|
|
|
document.getElementById('title').focus();
|
2003-09-24 18:00:00 -04:00
|
|
|
}
|
|
|
|
window.onload = focusit;
|
2003-12-05 04:41:27 -05:00
|
|
|
//-->
|
2003-09-24 18:00:00 -04:00
|
|
|
</script>
|
2004-08-01 03:51:26 -04:00
|
|
|
|
2003-12-04 20:44:42 -05:00
|
|
|
<div id="poststuff">
|
2003-12-05 04:41:27 -05:00
|
|
|
<fieldset id="titlediv">
|
2004-04-20 00:15:18 -04:00
|
|
|
<legend><a href="http://wordpress.org/docs/reference/post/#title" title="<?php _e('Help on titles') ?>"><?php _e('Title') ?></a></legend>
|
2005-06-18 22:51:48 -04:00
|
|
|
<div><input type="text" name="post_title" size="30" tabindex="1" value="<?php echo $post->post_title; ?>" id="title" /></div>
|
2003-12-05 04:41:27 -05:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset id="categorydiv">
|
2004-04-20 00:15:18 -04:00
|
|
|
<legend><a href="http://wordpress.org/docs/reference/post/#category" title="<?php _e('Help on categories') ?>"><?php _e('Categories') ?></a></legend>
|
2005-06-18 22:51:48 -04:00
|
|
|
<div><?php dropdown_categories($post->post_category); ?></div>
|
2003-12-05 04:41:27 -05:00
|
|
|
</fieldset>
|
2003-09-24 18:00:00 -04:00
|
|
|
|
2003-12-11 18:08:57 -05:00
|
|
|
<br />
|
2004-01-02 19:13:11 -05:00
|
|
|
<fieldset id="postdiv">
|
2004-04-20 00:15:18 -04:00
|
|
|
<legend><a href="http://wordpress.org/docs/reference/post/#post" title="<?php _e('Help with post field') ?>"><?php _e('Post') ?></a></legend>
|
2004-09-09 13:51:33 -04:00
|
|
|
<?php the_quicktags(); ?>
|
2003-09-24 18:00:00 -04:00
|
|
|
<?php
|
|
|
|
$rows = get_settings('default_post_edit_rows');
|
|
|
|
if (($rows < 3) || ($rows > 100)) {
|
2003-12-04 20:44:42 -05:00
|
|
|
$rows = 10;
|
2003-09-24 18:00:00 -04:00
|
|
|
}
|
|
|
|
?>
|
2005-06-18 22:51:48 -04:00
|
|
|
<div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo $post->post_content ?></textarea></div>
|
2003-12-05 04:41:27 -05:00
|
|
|
</fieldset>
|
|
|
|
|
2004-04-24 17:21:19 -04:00
|
|
|
|
2004-08-01 04:04:39 -04:00
|
|
|
<script type="text/javascript">
|
2003-09-24 18:00:00 -04:00
|
|
|
<!--
|
|
|
|
edCanvas = document.getElementById('content');
|
|
|
|
//-->
|
|
|
|
</script>
|
|
|
|
|
2005-03-06 19:01:57 -05:00
|
|
|
<input type="hidden" name="post_pingback" value="<?php echo get_option('default_pingback_flag') ?>" id="post_pingback" />
|
2004-09-14 08:41:09 -04:00
|
|
|
|
|
|
|
<p><label for="trackback"> <?php printf(__('<a href="%s" title="Help on trackbacks"><strong>TrackBack</strong> a <abbr title="Universal Resource Identifier">URI</abbr></a>:</label> (Separate multiple <abbr title="Universal Resource Identifier">URI</abbr>s with spaces.)<br />'), 'http://wordpress.org/docs/reference/post/#trackback') ?>
|
|
|
|
<input type="text" name="trackback_url" style="width: 360px" id="trackback" tabindex="7" /></p>
|
2004-08-01 04:04:39 -04:00
|
|
|
|
2004-05-07 21:15:03 -04:00
|
|
|
<p class="submit"><input name="saveasdraft" type="submit" id="saveasdraft" tabindex="9" value="<?php _e('Save as Draft') ?>" />
|
2004-09-14 08:41:09 -04:00
|
|
|
<input name="saveasprivate" type="submit" id="saveasprivate" tabindex="10" value="<?php _e('Save as Private') ?>" />
|
|
|
|
|
2005-07-17 17:21:50 -04:00
|
|
|
<?php if ( current_user_can('edit_posts') ) : ?>
|
2004-04-20 00:15:18 -04:00
|
|
|
<input name="publish" type="submit" id="publish" tabindex="6" style="font-weight: bold;" value="<?php _e('Publish') ?>" />
|
2004-09-14 08:41:09 -04:00
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php if ('bookmarklet' != $mode) {
|
2004-04-20 00:15:18 -04:00
|
|
|
echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' . __('Advanced Editing »') . '" />';
|
2004-01-02 19:13:11 -05:00
|
|
|
} ?>
|
2004-06-11 14:23:12 -04:00
|
|
|
<input name="referredby" type="hidden" id="referredby" value="<?php if (isset($_SERVER['HTTP_REFERER'])) echo urlencode($_SERVER['HTTP_REFERER']); ?>" />
|
2003-10-26 15:34:24 -05:00
|
|
|
</p>
|
2004-09-14 08:41:09 -04:00
|
|
|
|
|
|
|
<?php do_action('simple_edit_form', ''); ?>
|
|
|
|
|
2003-10-17 15:26:05 -04:00
|
|
|
</div>
|
2003-12-05 04:41:27 -05:00
|
|
|
</form>
|
|
|
|
|
2003-12-04 20:44:42 -05:00
|
|
|
</div>
|