]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit-form-advanced.php
WordPress 4.2.4
[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 global $post_type, $post_type_object, $post;
14
15 wp_enqueue_script('post');
16 $_wp_editor_expand = $_content_editor_dfw = false;
17
18 /**
19  * Filter whether to enable the 'expand' functionality in the post editor.
20  *
21  * @since 4.0.0
22  * @since 4.1.0 Added the `$post_type` parameter.
23  *
24  * @param bool   $expand    Whether to enable the 'expand' functionality. Default true.
25  * @param string $post_type Post type.
26  */
27 if ( post_type_supports( $post_type, 'editor' ) && ! wp_is_mobile() &&
28          ! ( $is_IE && preg_match( '/MSIE [5678]/', $_SERVER['HTTP_USER_AGENT'] ) ) &&
29          apply_filters( 'wp_editor_expand', true, $post_type ) ) {
30
31         wp_enqueue_script('editor-expand');
32         $_content_editor_dfw = true;
33         $_wp_editor_expand = ( get_user_setting( 'editor_expand', 'on' ) === 'on' );
34 }
35
36 if ( wp_is_mobile() )
37         wp_enqueue_script( 'jquery-touch-punch' );
38
39 /**
40  * Post ID global
41  * @name $post_ID
42  * @var int
43  */
44 $post_ID = isset($post_ID) ? (int) $post_ID : 0;
45 $user_ID = isset($user_ID) ? (int) $user_ID : 0;
46 $action = isset($action) ? $action : '';
47
48 if ( $post_ID == get_option( 'page_for_posts' ) && empty( $post->post_content ) ) {
49         add_action( 'edit_form_after_title', '_wp_posts_page_notice' );
50         remove_post_type_support( $post_type, 'editor' );
51 }
52
53 $thumbnail_support = current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' );
54 if ( ! $thumbnail_support && 'attachment' === $post_type && $post->post_mime_type ) {
55         if ( wp_attachment_is( 'audio', $post ) ) {
56                 $thumbnail_support = post_type_supports( 'attachment:audio', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:audio' );
57         } elseif ( wp_attachment_is( 'video', $post ) ) {
58                 $thumbnail_support = post_type_supports( 'attachment:video', 'thumbnail' ) || current_theme_supports( 'post-thumbnails', 'attachment:video' );
59         }
60 }
61
62 if ( $thumbnail_support ) {
63         add_thickbox();
64         wp_enqueue_media( array( 'post' => $post_ID ) );
65 }
66
67 // Add the local autosave notice HTML
68 add_action( 'admin_footer', '_local_storage_notice' );
69
70 /*
71  * @todo Document the $messages array(s).
72  */
73 $permalink = get_permalink( $post_ID );
74 if ( ! $permalink ) {
75         $permalink = '';
76 }
77
78 $messages = array();
79 $messages['post'] = array(
80          0 => '', // Unused. Messages start at index 1.
81          1 => sprintf( __('Post updated. <a href="%s">View post</a>'), esc_url( $permalink ) ),
82          2 => __('Custom field updated.'),
83          3 => __('Custom field deleted.'),
84          4 => __('Post updated.'),
85         /* translators: %s: date and time of the revision */
86          5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
87          6 => sprintf( __('Post published. <a href="%s">View post</a>'), esc_url( $permalink ) ),
88          7 => __('Post saved.'),
89          8 => sprintf( __('Post submitted. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
90          9 => sprintf( __('Post scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview post</a>'),
91                 /* translators: Publish box date format, see http://php.net/date */
92                 date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_date ) ), esc_url( $permalink ) ),
93         10 => sprintf( __('Post draft updated. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
94 );
95 $messages['page'] = array(
96          0 => '', // Unused. Messages start at index 1.
97          1 => sprintf( __('Page updated. <a href="%s">View page</a>'), esc_url( $permalink ) ),
98          2 => __('Custom field updated.'),
99          3 => __('Custom field deleted.'),
100          4 => __('Page updated.'),
101          5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
102          6 => sprintf( __('Page published. <a href="%s">View page</a>'), esc_url( $permalink ) ),
103          7 => __('Page saved.'),
104          8 => sprintf( __('Page submitted. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
105          9 => sprintf( __('Page scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview page</a>'), date_i18n( __( 'M j, Y @ H:i' ), strtotime( $post->post_date ) ), esc_url( $permalink ) ),
106         10 => sprintf( __('Page draft updated. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', $permalink ) ) ),
107 );
108 $messages['attachment'] = array_fill( 1, 10, __( 'Media attachment updated.' ) ); // Hack, for now.
109
110 /**
111  * Filter the post updated messages.
112  *
113  * @since 3.0.0
114  *
115  * @param array $messages Post updated messages. For defaults @see $messages declarations above.
116  */
117 $messages = apply_filters( 'post_updated_messages', $messages );
118
119 $message = false;
120 if ( isset($_GET['message']) ) {
121         $_GET['message'] = absint( $_GET['message'] );
122         if ( isset($messages[$post_type][$_GET['message']]) )
123                 $message = $messages[$post_type][$_GET['message']];
124         elseif ( !isset($messages[$post_type]) && isset($messages['post'][$_GET['message']]) )
125                 $message = $messages['post'][$_GET['message']];
126 }
127
128 $notice = false;
129 $form_extra = '';
130 if ( 'auto-draft' == $post->post_status ) {
131         if ( 'edit' == $action )
132                 $post->post_title = '';
133         $autosave = false;
134         $form_extra .= "<input type='hidden' id='auto_draft' name='auto_draft' value='1' />";
135 } else {
136         $autosave = wp_get_post_autosave( $post_ID );
137 }
138
139 $form_action = 'editpost';
140 $nonce_action = 'update-post_' . $post_ID;
141 $form_extra .= "<input type='hidden' id='post_ID' name='post_ID' value='" . esc_attr($post_ID) . "' />";
142
143 // Detect if there exists an autosave newer than the post and if that autosave is different than the post
144 if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt, false ) > mysql2date( 'U', $post->post_modified_gmt, false ) ) {
145         foreach ( _wp_post_revision_fields() as $autosave_field => $_autosave_field ) {
146                 if ( normalize_whitespace( $autosave->$autosave_field ) != normalize_whitespace( $post->$autosave_field ) ) {
147                         $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 ) );
148                         break;
149                 }
150         }
151         // If this autosave isn't different from the current post, begone.
152         if ( ! $notice )
153                 wp_delete_post_revision( $autosave->ID );
154         unset($autosave_field, $_autosave_field);
155 }
156
157 $post_type_object = get_post_type_object($post_type);
158
159 // All meta boxes should be defined and added before the first do_meta_boxes() call (or potentially during the do_meta_boxes action).
160 require_once( ABSPATH . 'wp-admin/includes/meta-boxes.php' );
161
162
163 $publish_callback_args = null;
164 if ( post_type_supports($post_type, 'revisions') && 'auto-draft' != $post->post_status ) {
165         $revisions = wp_get_post_revisions( $post_ID );
166
167         // We should aim to show the revisions metabox only when there are revisions.
168         if ( count( $revisions ) > 1 ) {
169                 reset( $revisions ); // Reset pointer for key()
170                 $publish_callback_args = array( 'revisions_count' => count( $revisions ), 'revision_id' => key( $revisions ) );
171                 add_meta_box('revisionsdiv', __('Revisions'), 'post_revisions_meta_box', null, 'normal', 'core');
172         }
173 }
174
175 if ( 'attachment' == $post_type ) {
176         wp_enqueue_script( 'image-edit' );
177         wp_enqueue_style( 'imgareaselect' );
178         add_meta_box( 'submitdiv', __('Save'), 'attachment_submit_meta_box', null, 'side', 'core' );
179         add_action( 'edit_form_after_title', 'edit_form_image_editor' );
180
181         if ( wp_attachment_is( 'audio', $post ) ) {
182                 add_meta_box( 'attachment-id3', __( 'Metadata' ), 'attachment_id3_data_meta_box', null, 'normal', 'core' );
183         }
184 } else {
185         add_meta_box( 'submitdiv', __( 'Publish' ), 'post_submit_meta_box', null, 'side', 'core', $publish_callback_args );
186 }
187
188 if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post_type, 'post-formats' ) )
189         add_meta_box( 'formatdiv', _x( 'Format', 'post format' ), 'post_format_meta_box', null, 'side', 'core' );
190
191 // all taxonomies
192 foreach ( get_object_taxonomies( $post ) as $tax_name ) {
193         $taxonomy = get_taxonomy( $tax_name );
194         if ( ! $taxonomy->show_ui || false === $taxonomy->meta_box_cb )
195                 continue;
196
197         $label = $taxonomy->labels->name;
198
199         if ( ! is_taxonomy_hierarchical( $tax_name ) )
200                 $tax_meta_box_id = 'tagsdiv-' . $tax_name;
201         else
202                 $tax_meta_box_id = $tax_name . 'div';
203
204         add_meta_box( $tax_meta_box_id, $label, $taxonomy->meta_box_cb, null, 'side', 'core', array( 'taxonomy' => $tax_name ) );
205 }
206
207 if ( post_type_supports($post_type, 'page-attributes') )
208         add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
209
210 if ( $thumbnail_support && current_user_can( 'upload_files' ) )
211         add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
212
213 if ( post_type_supports($post_type, 'excerpt') )
214         add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', null, 'normal', 'core');
215
216 if ( post_type_supports($post_type, 'trackbacks') )
217         add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', null, 'normal', 'core');
218
219 if ( post_type_supports($post_type, 'custom-fields') )
220         add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', null, 'normal', 'core');
221
222 /**
223  * Fires in the middle of built-in meta box registration.
224  *
225  * @since 2.1.0
226  * @deprecated 3.7.0 Use 'add_meta_boxes' instead.
227  *
228  * @param WP_Post $post Post object.
229  */
230 do_action( 'dbx_post_advanced', $post );
231
232 if ( post_type_supports($post_type, 'comments') )
233         add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', null, 'normal', 'core');
234
235 if ( ( 'publish' == get_post_status( $post ) || 'private' == get_post_status( $post ) ) && post_type_supports($post_type, 'comments') )
236         add_meta_box('commentsdiv', __('Comments'), 'post_comment_meta_box', null, 'normal', 'core');
237
238 if ( ! ( 'pending' == get_post_status( $post ) && ! current_user_can( $post_type_object->cap->publish_posts ) ) )
239         add_meta_box('slugdiv', __('Slug'), 'post_slug_meta_box', null, 'normal', 'core');
240
241 if ( post_type_supports($post_type, 'author') ) {
242         if ( is_super_admin() || current_user_can( $post_type_object->cap->edit_others_posts ) )
243                 add_meta_box('authordiv', __('Author'), 'post_author_meta_box', null, 'normal', 'core');
244 }
245
246 /**
247  * Fires after all built-in meta boxes have been added.
248  *
249  * @since 3.0.0
250  *
251  * @param string  $post_type Post type.
252  * @param WP_Post $post      Post object.
253  */
254 do_action( 'add_meta_boxes', $post_type, $post );
255
256 /**
257  * Fires after all built-in meta boxes have been added, contextually for the given post type.
258  *
259  * The dynamic portion of the hook, `$post_type`, refers to the post type of the post.
260  *
261  * @since 3.0.0
262  *
263  * @param WP_Post $post Post object.
264  */
265 do_action( 'add_meta_boxes_' . $post_type, $post );
266
267 /**
268  * Fires after meta boxes have been added.
269  *
270  * Fires once for each of the default meta box contexts: normal, advanced, and side.
271  *
272  * @since 3.0.0
273  *
274  * @param string  $post_type Post type of the post.
275  * @param string  $context   string  Meta box context.
276  * @param WP_Post $post      Post object.
277  */
278 do_action( 'do_meta_boxes', $post_type, 'normal', $post );
279 /** This action is documented in wp-admin/edit-form-advanced.php */
280 do_action( 'do_meta_boxes', $post_type, 'advanced', $post );
281 /** This action is documented in wp-admin/edit-form-advanced.php */
282 do_action( 'do_meta_boxes', $post_type, 'side', $post );
283
284 add_screen_option('layout_columns', array('max' => 2, 'default' => 2) );
285
286 if ( 'post' == $post_type ) {
287         $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>';
288
289         get_current_screen()->add_help_tab( array(
290                 'id'      => 'customize-display',
291                 'title'   => __('Customizing This Display'),
292                 'content' => $customize_display,
293         ) );
294
295         $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>';
296         $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.' ) . '</p>';
297         $title_and_editor .= '<p>' . __( 'Visual mode gives you a WYSIWYG editor. Click the last icon in the row to get a second row of controls. ') . '</p>';
298         $title_and_editor .= '<p>' . __( 'The Text mode allows you to enter HTML along with your post text. Line breaks will be converted to paragraphs automatically.' ) . '</p>';
299         $title_and_editor .= '<p>' . __( 'You can insert media files by clicking the icons above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.' ) . '</p>';
300         $title_and_editor .= '<p>' . __( 'You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options.' ) . '</p>';
301         $title_and_editor .= '<p>' . __( 'Keyboard users: When you&#8217;re working in the visual editor, you can use <kbd>Alt + F10</kbd> to access the toolbar.' ) . '</p>';
302
303         get_current_screen()->add_help_tab( array(
304                 'id'      => 'title-post-editor',
305                 'title'   => __('Title and Post Editor'),
306                 'content' => $title_and_editor,
307         ) );
308
309         get_current_screen()->set_help_sidebar(
310                         '<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' .
311                         '<p><strong>' . __('For more information:') . '</strong></p>' .
312                         '<p>' . __('<a href="https://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .
313                         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
314         );
315 } elseif ( 'page' == $post_type ) {
316         $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>' .
317                 '<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>';
318
319         get_current_screen()->add_help_tab( array(
320                 'id'      => 'about-pages',
321                 'title'   => __('About Pages'),
322                 'content' => $about_pages,
323         ) );
324
325         get_current_screen()->set_help_sidebar(
326                         '<p><strong>' . __('For more information:') . '</strong></p>' .
327                         '<p>' . __('<a href="https://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .
328                         '<p>' . __('<a href="https://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .
329                         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
330         );
331 } elseif ( 'attachment' == $post_type ) {
332         get_current_screen()->add_help_tab( array(
333                 'id'      => 'overview',
334                 'title'   => __('Overview'),
335                 'content' =>
336                         '<p>' . __('This screen allows you to edit four fields for metadata in a file within the media library.') . '</p>' .
337                         '<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>' .
338                         '<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>' .
339                         '<p>' . __('Remember to click Update Media to save metadata entered or changed.') . '</p>'
340         ) );
341
342         get_current_screen()->set_help_sidebar(
343         '<p><strong>' . __('For more information:') . '</strong></p>' .
344         '<p>' . __('<a href="https://codex.wordpress.org/Media_Add_New_Screen#Edit_Media" target="_blank">Documentation on Edit Media</a>') . '</p>' .
345         '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
346         );
347 }
348
349 if ( 'post' == $post_type || 'page' == $post_type ) {
350         $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>';
351         $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="https://codex.wordpress.org/Embeds">learn more about embeds</a>.' ) . '</p>';
352
353         get_current_screen()->add_help_tab( array(
354                 'id'            => 'inserting-media',
355                 'title'         => __( 'Inserting Media' ),
356                 'content'       => $inserting_media,
357         ) );
358 }
359
360 if ( 'post' == $post_type ) {
361         $publish_box = '<p>' . __('Several boxes on this screen contain settings for how your content will be published, including:') . '</p>';
362         $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>';
363
364         if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) {
365                 $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="https://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>';
366         }
367
368         if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) {
369                 $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>';
370         }
371
372         $publish_box .= '</ul>';
373
374         get_current_screen()->add_help_tab( array(
375                 'id'      => 'publish-box',
376                 'title'   => __('Publish Settings'),
377                 'content' => $publish_box,
378         ) );
379
380         $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>';
381         $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>';
382
383         get_current_screen()->add_help_tab( array(
384                 'id'      => 'discussion-settings',
385                 'title'   => __('Discussion Settings'),
386                 'content' => $discussion_settings,
387         ) );
388 } elseif ( 'page' == $post_type ) {
389         $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>' .
390                 '<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>' .
391                 '<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>';
392
393         get_current_screen()->add_help_tab( array(
394                 'id' => 'page-attributes',
395                 'title' => __('Page Attributes'),
396                 'content' => $page_attributes,
397         ) );
398 }
399
400 require_once( ABSPATH . 'wp-admin/admin-header.php' );
401 ?>
402
403 <div class="wrap">
404 <h2><?php
405 echo esc_html( $title );
406 if ( isset( $post_new_file ) && current_user_can( $post_type_object->cap->create_posts ) )
407         echo ' <a href="' . esc_url( admin_url( $post_new_file ) ) . '" class="add-new-h2">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
408 ?></h2>
409 <?php if ( $notice ) : ?>
410 <div id="notice" class="notice notice-warning"><p id="has-newer-autosave"><?php echo $notice ?></p></div>
411 <?php endif; ?>
412 <?php if ( $message ) : ?>
413 <div id="message" class="updated notice notice-success is-dismissible"><p><?php echo $message; ?></p></div>
414 <?php endif; ?>
415 <div id="lost-connection-notice" class="error hidden">
416         <p><span class="spinner"></span> <?php _e( '<strong>Connection lost.</strong> Saving has been disabled until you&#8217;re reconnected.' ); ?>
417         <span class="hide-if-no-sessionstorage"><?php _e( 'We&#8217;re backing up this post in your browser, just in case.' ); ?></span>
418         </p>
419 </div>
420 <form name="post" action="post.php" method="post" id="post"<?php
421 /**
422  * Fires inside the post editor form tag.
423  *
424  * @since 3.0.0
425  *
426  * @param WP_Post $post Post object.
427  */
428 do_action( 'post_edit_form_tag', $post );
429
430 $referer = wp_get_referer();
431 ?>>
432 <?php wp_nonce_field($nonce_action); ?>
433 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
434 <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr( $form_action ) ?>" />
435 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr( $form_action ) ?>" />
436 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
437 <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr( $post_type ) ?>" />
438 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr( $post->post_status) ?>" />
439 <input type="hidden" id="referredby" name="referredby" value="<?php echo $referer ? esc_url( $referer ) : ''; ?>" />
440 <?php if ( ! empty( $active_post_lock ) ) { ?>
441 <input type="hidden" id="active_post_lock" value="<?php echo esc_attr( implode( ':', $active_post_lock ) ); ?>" />
442 <?php
443 }
444 if ( 'draft' != get_post_status( $post ) )
445         wp_original_referer_field(true, 'previous');
446
447 echo $form_extra;
448
449 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
450 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
451 ?>
452
453 <?php
454 /**
455  * Fires at the beginning of the edit form.
456  *
457  * At this point, the required hidden fields and nonces have already been output.
458  *
459  * @since 3.7.0
460  *
461  * @param WP_Post $post Post object.
462  */
463 do_action( 'edit_form_top', $post ); ?>
464
465 <div id="poststuff">
466 <div id="post-body" class="metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?>">
467 <div id="post-body-content">
468
469 <?php if ( post_type_supports($post_type, 'title') ) { ?>
470 <div id="titlediv">
471 <div id="titlewrap">
472         <?php
473         /**
474          * Filter the title field placeholder text.
475          *
476          * @since 3.1.0
477          *
478          * @param string  $text Placeholder text. Default 'Enter title here'.
479          * @param WP_Post $post Post object.
480          */
481         $title_placeholder = apply_filters( 'enter_title_here', __( 'Enter title here' ), $post );
482         ?>
483         <label class="screen-reader-text" id="title-prompt-text" for="title"><?php echo $title_placeholder; ?></label>
484         <input type="text" name="post_title" size="30" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" spellcheck="true" autocomplete="off" />
485 </div>
486 <?php
487 /**
488  * Fires before the permalink field in the edit form.
489  *
490  * @since 4.1.0
491  *
492  * @param WP_Post $post Post object.
493  */
494 do_action( 'edit_form_before_permalink', $post );
495 ?>
496 <div class="inside">
497 <?php
498 $sample_permalink_html = $post_type_object->public ? get_sample_permalink_html($post->ID) : '';
499 $shortlink = wp_get_shortlink($post->ID, 'post');
500
501 if ( !empty( $shortlink ) && $shortlink !== $permalink && $permalink !== home_url('?page_id=' . $post->ID) )
502     $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>';
503
504 if ( $post_type_object->public && ! ( 'pending' == get_post_status( $post ) && !current_user_can( $post_type_object->cap->publish_posts ) ) ) {
505         $has_sample_permalink = $sample_permalink_html && 'auto-draft' != $post->post_status;
506 ?>
507         <div id="edit-slug-box" class="hide-if-no-js">
508         <?php
509                 if ( $has_sample_permalink )
510                         echo $sample_permalink_html;
511         ?>
512         </div>
513 <?php
514 }
515 ?>
516 </div>
517 <?php
518 wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false );
519 ?>
520 </div><!-- /titlediv -->
521 <?php
522 }
523 /**
524  * Fires after the title field.
525  *
526  * @since 3.5.0
527  *
528  * @param WP_Post $post Post object.
529  */
530 do_action( 'edit_form_after_title', $post );
531
532 if ( post_type_supports($post_type, 'editor') ) {
533 ?>
534 <div id="postdivrich" class="postarea<?php if ( $_wp_editor_expand ) { echo ' wp-editor-expand'; } ?>">
535
536 <?php wp_editor( $post->post_content, 'content', array(
537         '_content_editor_dfw' => $_content_editor_dfw,
538         'drag_drop_upload' => true,
539         'tabfocus_elements' => 'content-html,save-post',
540         'editor_height' => 300,
541         'tinymce' => array(
542                 'resize' => false,
543                 'wp_autoresize_on' => $_wp_editor_expand,
544                 'add_unload_trigger' => false,
545         ),
546 ) ); ?>
547 <table id="post-status-info"><tbody><tr>
548         <td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
549         <td class="autosave-info">
550         <span class="autosave-message">&nbsp;</span>
551 <?php
552         if ( 'auto-draft' != $post->post_status ) {
553                 echo '<span id="last-edit">';
554                 if ( $last_user = get_userdata( get_post_meta( $post_ID, '_edit_last', true ) ) ) {
555                         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));
556                 } else {
557                         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));
558                 }
559                 echo '</span>';
560         } ?>
561         </td>
562         <td id="content-resize-handle" class="hide-if-no-js"><br /></td>
563 </tr></tbody></table>
564
565 </div>
566 <?php }
567 /**
568  * Fires after the content editor.
569  *
570  * @since 3.5.0
571  *
572  * @param WP_Post $post Post object.
573  */
574 do_action( 'edit_form_after_editor', $post );
575 ?>
576 </div><!-- /post-body-content -->
577
578 <div id="postbox-container-1" class="postbox-container">
579 <?php
580
581 if ( 'page' == $post_type ) {
582         /**
583          * Fires before meta boxes with 'side' context are output for the 'page' post type.
584          *
585          * The submitpage box is a meta box with 'side' context, so this hook fires just before it is output.
586          *
587          * @since 2.5.0
588          *
589          * @param WP_Post $post Post object.
590          */
591         do_action( 'submitpage_box', $post );
592 }
593 else {
594         /**
595          * Fires before meta boxes with 'side' context are output for all post types other than 'page'.
596          *
597          * The submitpost box is a meta box with 'side' context, so this hook fires just before it is output.
598          *
599          * @since 2.5.0
600          *
601          * @param WP_Post $post Post object.
602          */
603         do_action( 'submitpost_box', $post );
604 }
605
606
607 do_meta_boxes($post_type, 'side', $post);
608
609 ?>
610 </div>
611 <div id="postbox-container-2" class="postbox-container">
612 <?php
613
614 do_meta_boxes(null, 'normal', $post);
615
616 if ( 'page' == $post_type ) {
617         /**
618          * Fires after 'normal' context meta boxes have been output for the 'page' post type.
619          *
620          * @since 1.5.0
621          *
622          * @param WP_Post $post Post object.
623          */
624         do_action( 'edit_page_form', $post );
625 }
626 else {
627         /**
628          * Fires after 'normal' context meta boxes have been output for all post types other than 'page'.
629          *
630          * @since 1.5.0
631          *
632          * @param WP_Post $post Post object.
633          */
634         do_action( 'edit_form_advanced', $post );
635 }
636
637
638 do_meta_boxes(null, 'advanced', $post);
639
640 ?>
641 </div>
642 <?php
643 /**
644  * Fires after all meta box sections have been output, before the closing #post-body div.
645  *
646  * @since 2.1.0
647  *
648  * @param WP_Post $post Post object.
649  */
650 do_action( 'dbx_post_sidebar', $post );
651
652 ?>
653 </div><!-- /post-body -->
654 <br class="clear" />
655 </div><!-- /poststuff -->
656 </form>
657 </div>
658
659 <?php
660 if ( post_type_supports( $post_type, 'comments' ) )
661         wp_comment_reply();
662 ?>
663
664 <?php if ( ! wp_is_mobile() && post_type_supports( $post_type, 'title' ) && '' === $post->post_title ) : ?>
665 <script type="text/javascript">
666 try{document.post.title.focus();}catch(e){}
667 </script>
668 <?php endif; ?>