]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit-form-advanced.php
WordPress 3.8.2-scripts
[autoinstalls/wordpress.git] / wp-admin / edit-form-advanced.php
1 <?php
2 /**
3  * Post advanced form for inclusion in the administration panels.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 // don't load directly
10 if ( !defined('ABSPATH') )
11         die('-1');
12
13 wp_enqueue_script('post');
14
15 if ( wp_is_mobile() )
16         wp_enqueue_script( 'jquery-touch-punch' );
17
18 /**
19  * Post ID global
20  * @name $post_ID
21  * @var int
22  */
23 $post_ID = isset($post_ID) ? (int) $post_ID : 0;
24 $user_ID = isset($user_ID) ? (int) $user_ID : 0;
25 $action = isset($action) ? $action : '';
26
27 if ( post_type_supports($post_type, 'editor') || post_type_supports($post_type, 'thumbnail') ) {
28         add_thickbox();
29         wp_enqueue_media( array( 'post' => $post_ID ) );
30 }
31
32 // Add the local autosave notice HTML
33 add_action( 'admin_footer', '_local_storage_notice' );
34
35 /*
36  * @todo Document the $messages array(s).
37  */
38 $messages = array();
39 $messages['post'] = array(
40          0 => '', // Unused. Messages start at index 1.
41          1 => sprintf( __('Post updated. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
42          2 => __('Custom field updated.'),
43          3 => __('Custom field deleted.'),
44          4 => __('Post updated.'),
45         /* translators: %s: date and time of the revision */
46          5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
47          6 => sprintf( __('Post published. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
48          7 => __('Post saved.'),
49          8 => sprintf( __('Post submitted. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
50          9 => sprintf( __('Post scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview post</a>'),
51                 // translators: Publish box date format, see http://php.net/date
52                 date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
53         10 => sprintf( __('Post draft updated. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
54 );
55 $messages['page'] = array(
56          0 => '', // Unused. Messages start at index 1.
57          1 => sprintf( __('Page updated. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
58          2 => __('Custom field updated.'),
59          3 => __('Custom field deleted.'),
60          4 => __('Page updated.'),
61          5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
62          6 => sprintf( __('Page published. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
63          7 => __('Page saved.'),
64          8 => sprintf( __('Page submitted. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
65          9 => sprintf( __('Page scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview page</a>'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
66         10 => sprintf( __('Page draft updated. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
67 );
68 $messages['attachment'] = array_fill( 1, 10, __( 'Media attachment updated.' ) ); // Hack, for now.
69
70 /**
71  * Filter the post updated messages.
72  *
73  * @since 3.0.0
74  *
75  * @param array $messages Post updated messages. For defaults @see $messages declarations above.
76  */
77 $messages = apply_filters( 'post_updated_messages', $messages );
78
79 $message = false;
80 if ( isset($_GET['message']) ) {
81         $_GET['message'] = absint( $_GET['message'] );
82         if ( isset($messages[$post_type][$_GET['message']]) )
83                 $message = $messages[$post_type][$_GET['message']];
84         elseif ( !isset($messages[$post_type]) && isset($messages['post'][$_GET['message']]) )
85                 $message = $messages['post'][$_GET['message']];
86 }
87
88 $notice = false;
89 $form_extra = '';
90 if ( 'auto-draft' == $post->post_status ) {
91         if ( 'edit' == $action )
92                 $post->post_title = '';
93         $autosave = false;
94         $form_extra .= "<input type='hidden' id='auto_draft' name='auto_draft' value='1' />";
95 } else {
96         $autosave = wp_get_post_autosave( $post_ID );
97 }
98
99 $form_action = 'editpost';
100 $nonce_action = 'update-post_' . $post_ID;
101 $form_extra .= "<input type='hidden' id='post_ID' name='post_ID' value='" . esc_attr($post_ID) . "' />";
102
103 // Detect if there exists an autosave newer than the post and if that autosave is different than the post
104 if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt, false ) > mysql2date( 'U', $post->post_modified_gmt, false ) ) {
105         foreach ( _wp_post_revision_fields() as $autosave_field => $_autosave_field ) {
106                 if ( normalize_whitespace( $autosave->$autosave_field ) != normalize_whitespace( $post->$autosave_field ) ) {
107                         $notice = sprintf( __( 'There is an autosave of this post that is more recent than the version below. <a href="%s">View the autosave</a>' ), get_edit_post_link( $autosave->ID ) );
108                         break;
109                 }
110         }
111         // If this autosave isn't different from the current post, begone.
112         if ( ! $notice )
113                 wp_delete_post_revision( $autosave->ID );
114         unset($autosave_field, $_autosave_field);
115 }
116
117 $post_type_object = get_post_type_object($post_type);
118
119 // All meta boxes should be defined and added before the first do_meta_boxes() call (or potentially during the do_meta_boxes action).
120 require_once( ABSPATH . 'wp-admin/includes/meta-boxes.php' );
121
122
123 $publish_callback_args = null;
124 if ( post_type_supports($post_type, 'revisions') && 'auto-draft' != $post->post_status ) {
125         $revisions = wp_get_post_revisions( $post_ID );
126
127         // We should aim to show the revisions metabox only when there are revisions.
128         if ( count( $revisions ) > 1 ) {
129                 reset( $revisions ); // Reset pointer for key()
130                 $publish_callback_args = array( 'revisions_count' => count( $revisions ), 'revision_id' => key( $revisions ) );
131                 add_meta_box('revisionsdiv', __('Revisions'), 'post_revisions_meta_box', null, 'normal', 'core');
132         }
133 }
134
135 if ( 'attachment' == $post_type ) {
136         wp_enqueue_script( 'image-edit' );
137         wp_enqueue_style( 'imgareaselect' );
138         add_meta_box( 'submitdiv', __('Save'), 'attachment_submit_meta_box', null, 'side', 'core' );
139         add_action( 'edit_form_after_title', 'edit_form_image_editor' );
140 } else {
141         add_meta_box( 'submitdiv', __( 'Publish' ), 'post_submit_meta_box', null, 'side', 'core', $publish_callback_args );
142 }
143
144 if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post_type, 'post-formats' ) )
145         add_meta_box( 'formatdiv', _x( 'Format', 'post format' ), 'post_format_meta_box', null, 'side', 'core' );
146
147 // all taxonomies
148 foreach ( get_object_taxonomies( $post ) as $tax_name ) {
149         $taxonomy = get_taxonomy( $tax_name );
150         if ( ! $taxonomy->show_ui || false === $taxonomy->meta_box_cb )
151                 continue;
152
153         $label = $taxonomy->labels->name;
154
155         if ( ! is_taxonomy_hierarchical( $tax_name ) )
156                 $tax_meta_box_id = 'tagsdiv-' . $tax_name;
157         else
158                 $tax_meta_box_id = $tax_name . 'div';
159
160         add_meta_box( $tax_meta_box_id, $label, $taxonomy->meta_box_cb, null, 'side', 'core', array( 'taxonomy' => $tax_name ) );
161 }
162
163 if ( post_type_supports($post_type, 'page-attributes') )
164         add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
165
166 $audio_post_support = $video_post_support = false;
167 $theme_support = current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' );
168 if ( 'attachment' === $post_type && ! empty( $post->post_mime_type ) ) {
169         $audio_post_support = 0 === strpos( $post->post_mime_type, 'audio/' ) && current_theme_supports( 'post-thumbnails', 'attachment:audio' ) && post_type_supports( 'attachment:audio', 'thumbnail' );
170         $video_post_support = 0 === strpos( $post->post_mime_type, 'video/' ) && current_theme_supports( 'post-thumbnails', 'attachment:video' ) && post_type_supports( 'attachment:video', 'thumbnail' );
171 }
172
173 if ( $theme_support || $audio_post_support || $video_post_support )
174         add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
175
176 if ( post_type_supports($post_type, 'excerpt') )
177         add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', null, 'normal', 'core');
178
179 if ( post_type_supports($post_type, 'trackbacks') )
180         add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', null, 'normal', 'core');
181
182 if ( post_type_supports($post_type, 'custom-fields') )
183         add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', null, 'normal', 'core');
184
185 /**
186  * Fires in the middle of built-in meta box registration.
187  *
188  * @since 2.1.0
189  * @deprecated 3.7.0 Use 'add_meta_boxes' instead.
190  *
191  * @param WP_Post $post Post object.
192  */
193 do_action( 'dbx_post_advanced', $post );
194
195 if ( post_type_supports($post_type, 'comments') )
196         add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', null, 'normal', 'core');
197
198 if ( ( 'publish' == get_post_status( $post ) || 'private' == get_post_status( $post ) ) && post_type_supports($post_type, 'comments') )
199         add_meta_box('commentsdiv', __('Comments'), 'post_comment_meta_box', null, 'normal', 'core');
200
201 if ( ! ( 'pending' == get_post_status( $post ) && ! current_user_can( $post_type_object->cap->publish_posts ) ) )
202         add_meta_box('slugdiv', __('Slug'), 'post_slug_meta_box', null, 'normal', 'core');
203
204 if ( post_type_supports($post_type, 'author') ) {
205         if ( is_super_admin() || current_user_can( $post_type_object->cap->edit_others_posts ) )
206                 add_meta_box('authordiv', __('Author'), 'post_author_meta_box', null, 'normal', 'core');
207 }
208
209 /**
210  * Fires after all built-in meta boxes have been added.
211  *
212  * @since 3.0.0
213  *
214  * @param string  $post_type Post type.
215  * @param WP_Post $post      Post object.
216  */
217 do_action( 'add_meta_boxes', $post_type, $post );
218
219 /**
220  * Fires after all built-in meta boxes have been added, contextually for the given post type.
221  *
222  * The dynamic portion of the hook, $post_type, refers to the post type of the post.
223  *
224  * @since 3.0.0
225  *
226  * @param WP_Post $post Post object.
227  */
228 do_action( 'add_meta_boxes_' . $post_type, $post );
229
230 /**
231  * Fires after meta boxes have been added.
232  *
233  * Fires once for each of the default meta box contexts: normal, advanced, and side.
234  *
235  * @since 3.0.0
236  *
237  * @param string  $post_type Post type of the post.
238  * @param string  $context   string  Meta box context.
239  * @param WP_Post $post      Post object.
240  */
241 do_action( 'do_meta_boxes', $post_type, 'normal', $post );
242 /** This action is documented in wp-admin/edit-form-advanced.php */
243 do_action( 'do_meta_boxes', $post_type, 'advanced', $post );
244 /** This action is documented in wp-admin/edit-form-advanced.php */
245 do_action( 'do_meta_boxes', $post_type, 'side', $post );
246
247 add_screen_option('layout_columns', array('max' => 2, 'default' => 2) );
248
249 if ( 'post' == $post_type ) {
250         $customize_display = '<p>' . __('The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.') . '</p>';
251
252         get_current_screen()->add_help_tab( array(
253                 'id'      => 'customize-display',
254                 'title'   => __('Customizing This Display'),
255                 'content' => $customize_display,
256         ) );
257
258         $title_and_editor  = '<p>' . __('<strong>Title</strong> - Enter a title for your post. After you enter a title, you&#8217;ll see the permalink below, which you can edit.') . '</p>';
259         $title_and_editor .= '<p>' . __('<strong>Post editor</strong> - Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon in the row to get a second row of controls. The Text mode allows you to enter HTML along with your post text. Line breaks will be converted to paragraphs automatically. You can insert media files by clicking the icons above the post editor and following the directions. You can go to the distraction-free writing screen via the Fullscreen icon in Visual mode (second to last in the top row) or the Fullscreen button in Text mode (last in the row). Once there, you can make buttons visible by hovering over the top area. Exit Fullscreen back to the regular post editor.') . '</p>';
260
261         get_current_screen()->add_help_tab( array(
262                 'id'      => 'title-post-editor',
263                 'title'   => __('Title and Post Editor'),
264                 'content' => $title_and_editor,
265         ) );
266
267         get_current_screen()->set_help_sidebar(
268                         '<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' .
269                         '<p><strong>' . __('For more information:') . '</strong></p>' .
270                         '<p>' . __('<a href="http://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .
271                         '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
272         );
273 } elseif ( 'page' == $post_type ) {
274         $about_pages = '<p>' . __('Pages are similar to Posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest Pages under other Pages by making one the &#8220;Parent&#8221; of the other, creating a group of Pages.') . '</p>' .
275                 '<p>' . __('Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box:') . '</p>';
276
277         get_current_screen()->add_help_tab( array(
278                 'id'      => 'about-pages',
279                 'title'   => __('About Pages'),
280                 'content' => $about_pages,
281         ) );
282
283         get_current_screen()->set_help_sidebar(
284                         '<p><strong>' . __('For more information:') . '</strong></p>' .
285                         '<p>' . __('<a href="http://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .
286                         '<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .
287                         '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
288         );
289 } elseif ( 'attachment' == $post_type ) {
290         get_current_screen()->add_help_tab( array(
291                 'id'      => 'overview',
292                 'title'   => __('Overview'),
293                 'content' =>
294                         '<p>' . __('This screen allows you to edit four fields for metadata in a file within the media library.') . '</p>' .
295                         '<p>' . __('For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.') . '</p>' .
296                         '<p>' . __('Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.') . '</p>' .
297                         '<p>' . __('Remember to click Update Media to save metadata entered or changed.') . '</p>'
298         ) );
299
300         get_current_screen()->set_help_sidebar(
301         '<p><strong>' . __('For more information:') . '</strong></p>' .
302         '<p>' . __('<a href="http://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' .
303         '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
304         );
305 }
306
307 if ( 'post' == $post_type || 'page' == $post_type ) {
308         $inserting_media = '<p>' . __( 'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the &#8220;Create a new gallery&#8221; button.' ) . '</p>';
309         $inserting_media .= '<p>' . __( 'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Please refer to the Codex to <a href="http://codex.wordpress.org/Embeds">learn more about embeds</a>.' ) . '</p>';
310
311         get_current_screen()->add_help_tab( array(
312                 'id'            => 'inserting-media',
313                 'title'         => __( 'Inserting Media' ),
314                 'content'       => $inserting_media,
315         ) );
316 }
317
318 if ( 'post' == $post_type ) {
319         $publish_box = '<p>' . __('Several boxes on this screen contain settings for how your content will be published, including:') . '</p>';
320         $publish_box .= '<ul><li>' . __('<strong>Publish</strong> - You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.') . '</li>';
321
322         if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) {
323                 $publish_box .= '<li>' . __( '<strong>Format</strong> - Post Formats designate how your theme will display a specific post. For example, you could have a <em>standard</em> blog post with a title and paragraphs, or a short <em>aside</em> that omits the title and contains a short text blurb. Please refer to the Codex for <a href="http://codex.wordpress.org/Post_Formats#Supported_Formats">descriptions of each post format</a>. Your theme could enable all or some of 10 possible formats.' ) . '</li>';
324         }
325
326         if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) {
327                 $publish_box .= '<li>' . __('<strong>Featured Image</strong> - This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the featured image as a post thumbnail on the home page, a custom header, etc.') . '</li>';
328         }
329
330         $publish_box .= '</ul>';
331
332         get_current_screen()->add_help_tab( array(
333                 'id'      => 'publish-box',
334                 'title'   => __('Publish Settings'),
335                 'content' => $publish_box,
336         ) );
337
338         $discussion_settings  = '<p>' . __('<strong>Send Trackbacks</strong> - Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they&#8217;ll be notified automatically using pingbacks, and this field is unnecessary.') . '</p>';
339         $discussion_settings .= '<p>' . __('<strong>Discussion</strong> - You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.') . '</p>';
340
341         get_current_screen()->add_help_tab( array(
342                 'id'      => 'discussion-settings',
343                 'title'   => __('Discussion Settings'),
344                 'content' => $discussion_settings,
345         ) );
346 } elseif ( 'page' == $post_type ) {
347         $page_attributes = '<p>' . __('<strong>Parent</strong> - You can arrange your pages in hierarchies. For example, you could have an &#8220;About&#8221; page that has &#8220;Life Story&#8221; and &#8220;My Dog&#8221; pages under it. There are no limits to how many levels you can nest pages.') . '</p>' .
348                 '<p>' . __('<strong>Template</strong> - Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you&#8217;ll see them in this dropdown menu.') . '</p>' .
349                 '<p>' . __('<strong>Order</strong> - Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.') . '</p>';
350
351         get_current_screen()->add_help_tab( array(
352                 'id' => 'page-attributes',
353                 'title' => __('Page Attributes'),
354                 'content' => $page_attributes,
355         ) );
356 }
357
358 require_once( ABSPATH . 'wp-admin/admin-header.php' );
359 ?>
360
361 <div class="wrap">
362 <h2><?php
363 echo esc_html( $title );
364 if ( isset( $post_new_file ) && current_user_can( $post_type_object->cap->create_posts ) )
365         echo ' <a href="' . esc_url( admin_url( $post_new_file ) ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
366 ?></h2>
367 <?php if ( $notice ) : ?>
368 <div id="notice" class="error"><p id="has-newer-autosave"><?php echo $notice ?></p></div>
369 <?php endif; ?>
370 <?php if ( $message ) : ?>
371 <div id="message" class="updated"><p><?php echo $message; ?></p></div>
372 <?php endif; ?>
373 <div id="lost-connection-notice" class="error hidden">
374         <p><span class="spinner"></span> <?php _e( '<strong>Connection lost.</strong> Saving has been disabled until you&#8217;re reconnected.' ); ?>
375         <span class="hide-if-no-sessionstorage"><?php _e( 'We&#8217;re backing up this post in your browser, just in case.' ); ?></span>
376         </p>
377 </div>
378 <?php
379 /**
380  * Fires inside the post editor <form> tag.
381  *
382  * @since 3.0.0
383  *
384  * @param WP_Post $post Post object.
385  */
386 ?>
387 <form name="post" action="post.php" method="post" id="post"<?php do_action( 'post_edit_form_tag', $post ); ?>>
388 <?php wp_nonce_field($nonce_action); ?>
389 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
390 <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr( $form_action ) ?>" />
391 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr( $form_action ) ?>" />
392 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
393 <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr( $post_type ) ?>" />
394 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr( $post->post_status) ?>" />
395 <input type="hidden" id="referredby" name="referredby" value="<?php echo esc_url(wp_get_referer()); ?>" />
396 <?php if ( ! empty( $active_post_lock ) ) { ?>
397 <input type="hidden" id="active_post_lock" value="<?php echo esc_attr( implode( ':', $active_post_lock ) ); ?>" />
398 <?php
399 }
400 if ( 'draft' != get_post_status( $post ) )
401         wp_original_referer_field(true, 'previous');
402
403 echo $form_extra;
404
405 wp_nonce_field( 'autosave', 'autosavenonce', false );
406 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
407 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
408 ?>
409
410 <?php
411 /**
412  * Fires at the beginning of the edit form.
413  *
414  * At this point, the required hidden fields and nonces have already been output.
415  *
416  * @since 3.7.0
417  *
418  * @param WP_Post $post Post object.
419  */
420 do_action( 'edit_form_top', $post ); ?>
421
422 <div id="poststuff">
423 <div id="post-body" class="metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?>">
424 <div id="post-body-content">
425
426 <?php if ( post_type_supports($post_type, 'title') ) { ?>
427 <div id="titlediv">
428 <div id="titlewrap">
429         <?php
430         /**
431          * Filter the title field placeholder text.
432          *
433          * @since 3.1.0
434          *
435          * @param string  $text Placeholder text. Default 'Enter title here'.
436          * @param WP_Post $post Post object.
437          */
438         ?>
439         <label class="screen-reader-text" id="title-prompt-text" for="title"><?php echo apply_filters( 'enter_title_here', __( 'Enter title here' ), $post ); ?></label>
440         <input type="text" name="post_title" size="30" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" />
441 </div>
442 <div class="inside">
443 <?php
444 $sample_permalink_html = $post_type_object->public ? get_sample_permalink_html($post->ID) : '';
445 $shortlink = wp_get_shortlink($post->ID, 'post');
446 $permalink = get_permalink( $post->ID );
447 if ( !empty( $shortlink ) && $shortlink !== $permalink && $permalink !== home_url('?page_id=' . $post->ID) )
448     $sample_permalink_html .= '<input id="shortlink" type="hidden" value="' . esc_attr($shortlink) . '" /><a href="#" class="button button-small" onclick="prompt(&#39;URL:&#39;, jQuery(\'#shortlink\').val()); return false;">' . __('Get Shortlink') . '</a>';
449
450 if ( $post_type_object->public && ! ( 'pending' == get_post_status( $post ) && !current_user_can( $post_type_object->cap->publish_posts ) ) ) {
451         $has_sample_permalink = $sample_permalink_html && 'auto-draft' != $post->post_status;
452 ?>
453         <div id="edit-slug-box" class="hide-if-no-js">
454         <?php
455                 if ( $has_sample_permalink )
456                         echo $sample_permalink_html;
457         ?>
458         </div>
459 <?php
460 }
461 ?>
462 </div>
463 <?php
464 wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false );
465 ?>
466 </div><!-- /titlediv -->
467 <?php
468 }
469 /**
470  * Fires after the title field.
471  *
472  * @since 3.5.0
473  *
474  * @param WP_Post $post Post object.
475  */
476 do_action( 'edit_form_after_title', $post );
477
478 if ( post_type_supports($post_type, 'editor') ) {
479 ?>
480 <div id="postdivrich" class="postarea edit-form-section">
481
482 <?php wp_editor( $post->post_content, 'content', array(
483         'dfw' => true,
484         'tabfocus_elements' => 'insert-media-button,save-post',
485         'editor_height' => 360,
486 ) ); ?>
487 <table id="post-status-info" cellspacing="0"><tbody><tr>
488         <td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
489         <td class="autosave-info">
490         <span class="autosave-message">&nbsp;</span>
491 <?php
492         if ( 'auto-draft' != $post->post_status ) {
493                 echo '<span id="last-edit">';
494                 if ( $last_user = get_userdata( get_post_meta( $post_ID, '_edit_last', true ) ) ) {
495                         printf(__('Last edited by %1$s on %2$s at %3$s'), esc_html( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
496                 } else {
497                         printf(__('Last edited on %1$s at %2$s'), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
498                 }
499                 echo '</span>';
500         } ?>
501         </td>
502 </tr></tbody></table>
503
504 </div>
505 <?php }
506 /**
507  * Fires after the content editor.
508  *
509  * @since 3.5.0
510  *
511  * @param WP_Post $post Post object.
512  */
513 do_action( 'edit_form_after_editor', $post );
514 ?>
515 </div><!-- /post-body-content -->
516
517 <div id="postbox-container-1" class="postbox-container">
518 <?php
519
520 if ( 'page' == $post_type ) {
521         /**
522          * Fires before meta boxes with 'side' context are output for the 'page' post type.
523          *
524          * The submitpage box is a meta box with 'side' context, so this hook fires just before it is output.
525          *
526          * @since 2.5.0
527          *
528          * @param WP_Post $post Post object.
529          */
530         do_action( 'submitpage_box', $post );
531 }
532 else {
533         /**
534          * Fires before meta boxes with 'side' context are output for all post types other than 'page'.
535          *
536          * The submitpost box is a meta box with 'side' context, so this hook fires just before it is output.
537          *
538          * @since 2.5.0
539          *
540          * @param WP_Post $post Post object.
541          */
542         do_action( 'submitpost_box', $post );
543 }
544
545
546 do_meta_boxes($post_type, 'side', $post);
547
548 ?>
549 </div>
550 <div id="postbox-container-2" class="postbox-container">
551 <?php
552
553 do_meta_boxes(null, 'normal', $post);
554
555 if ( 'page' == $post_type ) {
556         /**
557          * Fires after 'normal' context meta boxes have been output for the 'page' post type.
558          *
559          * @since 1.5.0
560          *
561          * @param WP_Post $post Post object.
562          */
563         do_action( 'edit_page_form', $post );
564 }
565 else {
566         /**
567          * Fires after 'normal' context meta boxes have been output for all post types other than 'page'.
568          *
569          * @since 1.5.0
570          *
571          * @param WP_Post $post Post object.
572          */
573         do_action( 'edit_form_advanced', $post );
574 }
575
576
577 do_meta_boxes(null, 'advanced', $post);
578
579 ?>
580 </div>
581 <?php
582 /**
583  * Fires after all meta box sections have been output, before the closing #post-body div.
584  *
585  * @since 2.1.0
586  *
587  * @param WP_Post $post Post object.
588  */
589 do_action( 'dbx_post_sidebar', $post );
590
591 ?>
592 </div><!-- /post-body -->
593 <br class="clear" />
594 </div><!-- /poststuff -->
595 </form>
596 </div>
597
598 <?php
599 if ( post_type_supports( $post_type, 'comments' ) )
600         wp_comment_reply();
601 ?>
602
603 <?php if ( post_type_supports( $post_type, 'title' ) && '' === $post->post_title ) : ?>
604 <script type="text/javascript">
605 try{document.post.title.focus();}catch(e){}
606 </script>
607 <?php endif; ?>