| 71 | | <fieldset id="poststatusdiv"> |
|---|
| 72 | | <legend><a href="http://wordpress.org/docs/reference/post/#post_status" title="<?php _e('Help on post status') ?>"><?php _e('Post Status') ?></a></legend> |
|---|
| 73 | | <div> |
|---|
| 74 | | <?php if ( 1 < $user_level || (1 == $user_level && 2 == get_option('new_users_can_blog')) ) : ?> |
|---|
| 75 | | <label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post_status, 'publish'); ?> /> <?php _e('Publish') ?></label> |
|---|
| 76 | | <?php endif; ?> |
|---|
| 77 | | <label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post_status, 'draft'); ?> /> <?php _e('Draft') ?></label> |
|---|
| 78 | | <label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post_status, 'private'); ?> /> <?php _e('Private') ?></label></div> |
|---|
| 79 | | </fieldset> |
|---|
| | 134 | <tr> |
|---|
| | 135 | <th scope="row" valign="top"><?php _e('Post Status') ?>:</th> |
|---|
| | 136 | <td><?php if ( 1 < $user_level || (1 == $user_level && 2 == get_option('new_users_can_blog')) ) : ?> |
|---|
| | 137 | <label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post_status, 'publish'); ?> /> <?php _e('Published') ?></label><br /> |
|---|
| | 138 | <?php endif; ?> |
|---|
| | 139 | <label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post_status, 'draft'); ?> /> <?php _e('Draft') ?></label><br /> |
|---|
| | 140 | <label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post_status, 'private'); ?> /> <?php _e('Private') ?></label></td> |
|---|
| | 141 | </tr> |
|---|