| 90 | | <span id="autosave"></span> |
|---|
| 91 | | <?php echo $saveasdraft; ?> |
|---|
| | 92 | </div> |
|---|
| | 93 | |
|---|
| | 94 | <div class="inside"> |
|---|
| | 95 | |
|---|
| | 96 | |
|---|
| | 97 | <p> |
|---|
| | 98 | <?php if ( current_user_can('publish_posts') ) : ?> |
|---|
| | 99 | <label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post->post_status, 'publish'); checked($post->post_status, 'future'); ?> /> <?php _e('Published') ?></label> |
|---|
| | 100 | <?php endif; ?> |
|---|
| | 101 | <label for="post_status_pending" class="selectit"><input id="post_status_pending" name="post_status" type="radio" value="pending" <?php checked($post->post_status, 'pending'); ?> /> <?php _e('Pending Review') ?></label> |
|---|
| | 102 | <label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post->post_status, 'draft'); ?> /> <?php _e('Draft') ?></label> |
|---|
| | 103 | </p> |
|---|
| | 104 | |
|---|
| | 105 | <p><label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="checkbox" value="private" <?php checked($post->post_status, 'private'); ?> /> <?php _e('Keep this post private') ?></label></p> |
|---|
| | 106 | </div> |
|---|
| | 107 | |
|---|
| | 108 | <p class="submit"> |
|---|
| 232 | | <div id="poststatusdiv" class="postbox <?php echo postbox_classes('poststatusdiv'); ?>"> |
|---|
| 233 | | <h3><?php _e('Post Status') ?></h3> |
|---|
| 234 | | <div class="inside"> |
|---|
| 235 | | <?php if ( current_user_can('publish_posts') ) : ?> |
|---|
| 236 | | <label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post->post_status, 'publish'); checked($post->post_status, 'future'); ?> /> <?php _e('Published') ?></label> |
|---|
| 237 | | <?php endif; ?> |
|---|
| 238 | | <label for="post_status_pending" class="selectit"><input id="post_status_pending" name="post_status" type="radio" value="pending" <?php checked($post->post_status, 'pending'); ?> /> <?php _e('Pending Review') ?></label> |
|---|
| 239 | | <label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post->post_status, 'draft'); ?> /> <?php _e('Draft') ?></label> |
|---|
| 240 | | <label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post->post_status, 'private'); ?> /> <?php _e('Private') ?></label> |
|---|
| 241 | | </div> |
|---|
| 242 | | </div> |
|---|
| 243 | | |
|---|