]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/post.php
WordPress 4.7
[autoinstalls/wordpress.git] / wp-admin / includes / post.php
1 <?php
2 /**
3  * WordPress Post Administration API.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /**
10  * Rename $_POST data from form names to DB post columns.
11  *
12  * Manipulates $_POST directly.
13  *
14  * @package WordPress
15  * @since 2.6.0
16  *
17  * @param bool $update Are we updating a pre-existing post?
18  * @param array $post_data Array of post data. Defaults to the contents of $_POST.
19  * @return object|bool WP_Error on failure, true on success.
20  */
21 function _wp_translate_postdata( $update = false, $post_data = null ) {
22
23         if ( empty($post_data) )
24                 $post_data = &$_POST;
25
26         if ( $update )
27                 $post_data['ID'] = (int) $post_data['post_ID'];
28
29         $ptype = get_post_type_object( $post_data['post_type'] );
30
31         if ( $update && ! current_user_can( 'edit_post', $post_data['ID'] ) ) {
32                 if ( 'page' == $post_data['post_type'] )
33                         return new WP_Error( 'edit_others_pages', __( 'Sorry, you are not allowed to edit pages as this user.' ) );
34                 else
35                         return new WP_Error( 'edit_others_posts', __( 'Sorry, you are not allowed to edit posts as this user.' ) );
36         } elseif ( ! $update && ! current_user_can( $ptype->cap->create_posts ) ) {
37                 if ( 'page' == $post_data['post_type'] )
38                         return new WP_Error( 'edit_others_pages', __( 'Sorry, you are not allowed to create pages as this user.' ) );
39                 else
40                         return new WP_Error( 'edit_others_posts', __( 'Sorry, you are not allowed to create posts as this user.' ) );
41         }
42
43         if ( isset( $post_data['content'] ) )
44                 $post_data['post_content'] = $post_data['content'];
45
46         if ( isset( $post_data['excerpt'] ) )
47                 $post_data['post_excerpt'] = $post_data['excerpt'];
48
49         if ( isset( $post_data['parent_id'] ) )
50                 $post_data['post_parent'] = (int) $post_data['parent_id'];
51
52         if ( isset($post_data['trackback_url']) )
53                 $post_data['to_ping'] = $post_data['trackback_url'];
54
55         $post_data['user_ID'] = get_current_user_id();
56
57         if (!empty ( $post_data['post_author_override'] ) ) {
58                 $post_data['post_author'] = (int) $post_data['post_author_override'];
59         } else {
60                 if (!empty ( $post_data['post_author'] ) ) {
61                         $post_data['post_author'] = (int) $post_data['post_author'];
62                 } else {
63                         $post_data['post_author'] = (int) $post_data['user_ID'];
64                 }
65         }
66
67         if ( isset( $post_data['user_ID'] ) && ( $post_data['post_author'] != $post_data['user_ID'] )
68                  && ! current_user_can( $ptype->cap->edit_others_posts ) ) {
69                 if ( $update ) {
70                         if ( 'page' == $post_data['post_type'] )
71                                 return new WP_Error( 'edit_others_pages', __( 'Sorry, you are not allowed to edit pages as this user.' ) );
72                         else
73                                 return new WP_Error( 'edit_others_posts', __( 'Sorry, you are not allowed to edit posts as this user.' ) );
74                 } else {
75                         if ( 'page' == $post_data['post_type'] )
76                                 return new WP_Error( 'edit_others_pages', __( 'Sorry, you are not allowed to create pages as this user.' ) );
77                         else
78                                 return new WP_Error( 'edit_others_posts', __( 'Sorry, you are not allowed to create posts as this user.' ) );
79                 }
80         }
81
82         if ( ! empty( $post_data['post_status'] ) ) {
83                 $post_data['post_status'] = sanitize_key( $post_data['post_status'] );
84
85                 // No longer an auto-draft
86                 if ( 'auto-draft' === $post_data['post_status'] ) {
87                         $post_data['post_status'] = 'draft';
88                 }
89
90                 if ( ! get_post_status_object( $post_data['post_status'] ) ) {
91                         unset( $post_data['post_status'] );
92                 }
93         }
94
95         // What to do based on which button they pressed
96         if ( isset($post_data['saveasdraft']) && '' != $post_data['saveasdraft'] )
97                 $post_data['post_status'] = 'draft';
98         if ( isset($post_data['saveasprivate']) && '' != $post_data['saveasprivate'] )
99                 $post_data['post_status'] = 'private';
100         if ( isset($post_data['publish']) && ( '' != $post_data['publish'] ) && ( !isset($post_data['post_status']) || $post_data['post_status'] != 'private' ) )
101                 $post_data['post_status'] = 'publish';
102         if ( isset($post_data['advanced']) && '' != $post_data['advanced'] )
103                 $post_data['post_status'] = 'draft';
104         if ( isset($post_data['pending']) && '' != $post_data['pending'] )
105                 $post_data['post_status'] = 'pending';
106
107         if ( isset( $post_data['ID'] ) )
108                 $post_id = $post_data['ID'];
109         else
110                 $post_id = false;
111         $previous_status = $post_id ? get_post_field( 'post_status', $post_id ) : false;
112
113         if ( isset( $post_data['post_status'] ) && 'private' == $post_data['post_status'] && ! current_user_can( $ptype->cap->publish_posts ) ) {
114                 $post_data['post_status'] = $previous_status ? $previous_status : 'pending';
115         }
116
117         $published_statuses = array( 'publish', 'future' );
118
119         // Posts 'submitted for approval' present are submitted to $_POST the same as if they were being published.
120         // Change status from 'publish' to 'pending' if user lacks permissions to publish or to resave published posts.
121         if ( isset($post_data['post_status']) && (in_array( $post_data['post_status'], $published_statuses ) && !current_user_can( $ptype->cap->publish_posts )) )
122                 if ( ! in_array( $previous_status, $published_statuses ) || !current_user_can( 'edit_post', $post_id ) )
123                         $post_data['post_status'] = 'pending';
124
125         if ( ! isset( $post_data['post_status'] ) ) {
126                 $post_data['post_status'] = 'auto-draft' === $previous_status ? 'draft' : $previous_status;
127         }
128
129         if ( isset( $post_data['post_password'] ) && ! current_user_can( $ptype->cap->publish_posts ) ) {
130                 unset( $post_data['post_password'] );
131         }
132
133         if (!isset( $post_data['comment_status'] ))
134                 $post_data['comment_status'] = 'closed';
135
136         if (!isset( $post_data['ping_status'] ))
137                 $post_data['ping_status'] = 'closed';
138
139         foreach ( array('aa', 'mm', 'jj', 'hh', 'mn') as $timeunit ) {
140                 if ( !empty( $post_data['hidden_' . $timeunit] ) && $post_data['hidden_' . $timeunit] != $post_data[$timeunit] ) {
141                         $post_data['edit_date'] = '1';
142                         break;
143                 }
144         }
145
146         if ( !empty( $post_data['edit_date'] ) ) {
147                 $aa = $post_data['aa'];
148                 $mm = $post_data['mm'];
149                 $jj = $post_data['jj'];
150                 $hh = $post_data['hh'];
151                 $mn = $post_data['mn'];
152                 $ss = $post_data['ss'];
153                 $aa = ($aa <= 0 ) ? date('Y') : $aa;
154                 $mm = ($mm <= 0 ) ? date('n') : $mm;
155                 $jj = ($jj > 31 ) ? 31 : $jj;
156                 $jj = ($jj <= 0 ) ? date('j') : $jj;
157                 $hh = ($hh > 23 ) ? $hh -24 : $hh;
158                 $mn = ($mn > 59 ) ? $mn -60 : $mn;
159                 $ss = ($ss > 59 ) ? $ss -60 : $ss;
160                 $post_data['post_date'] = sprintf( "%04d-%02d-%02d %02d:%02d:%02d", $aa, $mm, $jj, $hh, $mn, $ss );
161                 $valid_date = wp_checkdate( $mm, $jj, $aa, $post_data['post_date'] );
162                 if ( !$valid_date ) {
163                         return new WP_Error( 'invalid_date', __( 'Invalid date.' ) );
164                 }
165                 $post_data['post_date_gmt'] = get_gmt_from_date( $post_data['post_date'] );
166         }
167
168         if ( isset( $post_data['post_category'] ) ) {
169                 $category_object = get_taxonomy( 'category' );
170                 if ( ! current_user_can( $category_object->cap->assign_terms ) ) {
171                         unset( $post_data['post_category'] );
172                 }
173         }
174
175         return $post_data;
176 }
177
178 /**
179  * Update an existing post with values provided in $_POST.
180  *
181  * @since 1.5.0
182  *
183  * @global wpdb $wpdb WordPress database abstraction object.
184  *
185  * @param array $post_data Optional.
186  * @return int Post ID.
187  */
188 function edit_post( $post_data = null ) {
189         global $wpdb;
190
191         if ( empty($post_data) )
192                 $post_data = &$_POST;
193
194         // Clear out any data in internal vars.
195         unset( $post_data['filter'] );
196
197         $post_ID = (int) $post_data['post_ID'];
198         $post = get_post( $post_ID );
199         $post_data['post_type'] = $post->post_type;
200         $post_data['post_mime_type'] = $post->post_mime_type;
201
202         if ( ! empty( $post_data['post_status'] ) ) {
203                 $post_data['post_status'] = sanitize_key( $post_data['post_status'] );
204
205                 if ( 'inherit' == $post_data['post_status'] ) {
206                         unset( $post_data['post_status'] );
207                 }
208         }
209
210         $ptype = get_post_type_object($post_data['post_type']);
211         if ( !current_user_can( 'edit_post', $post_ID ) ) {
212                 if ( 'page' == $post_data['post_type'] )
213                         wp_die( __('Sorry, you are not allowed to edit this page.' ));
214                 else
215                         wp_die( __('Sorry, you are not allowed to edit this post.' ));
216         }
217
218         if ( post_type_supports( $ptype->name, 'revisions' ) ) {
219                 $revisions = wp_get_post_revisions( $post_ID, array( 'order' => 'ASC', 'posts_per_page' => 1 ) );
220                 $revision = current( $revisions );
221
222                 // Check if the revisions have been upgraded
223                 if ( $revisions && _wp_get_post_revision_version( $revision ) < 1 )
224                         _wp_upgrade_revisions_of_post( $post, wp_get_post_revisions( $post_ID ) );
225         }
226
227         if ( isset($post_data['visibility']) ) {
228                 switch ( $post_data['visibility'] ) {
229                         case 'public' :
230                                 $post_data['post_password'] = '';
231                                 break;
232                         case 'password' :
233                                 unset( $post_data['sticky'] );
234                                 break;
235                         case 'private' :
236                                 $post_data['post_status'] = 'private';
237                                 $post_data['post_password'] = '';
238                                 unset( $post_data['sticky'] );
239                                 break;
240                 }
241         }
242
243         $post_data = _wp_translate_postdata( true, $post_data );
244         if ( is_wp_error($post_data) )
245                 wp_die( $post_data->get_error_message() );
246
247         // Post Formats
248         if ( isset( $post_data['post_format'] ) )
249                 set_post_format( $post_ID, $post_data['post_format'] );
250
251         $format_meta_urls = array( 'url', 'link_url', 'quote_source_url' );
252         foreach ( $format_meta_urls as $format_meta_url ) {
253                 $keyed = '_format_' . $format_meta_url;
254                 if ( isset( $post_data[ $keyed ] ) )
255                         update_post_meta( $post_ID, $keyed, wp_slash( esc_url_raw( wp_unslash( $post_data[ $keyed ] ) ) ) );
256         }
257
258         $format_keys = array( 'quote', 'quote_source_name', 'image', 'gallery', 'audio_embed', 'video_embed' );
259
260         foreach ( $format_keys as $key ) {
261                 $keyed = '_format_' . $key;
262                 if ( isset( $post_data[ $keyed ] ) ) {
263                         if ( current_user_can( 'unfiltered_html' ) )
264                                 update_post_meta( $post_ID, $keyed, $post_data[ $keyed ] );
265                         else
266                                 update_post_meta( $post_ID, $keyed, wp_filter_post_kses( $post_data[ $keyed ] ) );
267                 }
268         }
269
270         if ( 'attachment' === $post_data['post_type'] && preg_match( '#^(audio|video)/#', $post_data['post_mime_type'] ) ) {
271                 $id3data = wp_get_attachment_metadata( $post_ID );
272                 if ( ! is_array( $id3data ) ) {
273                         $id3data = array();
274                 }
275
276                 foreach ( wp_get_attachment_id3_keys( $post, 'edit' ) as $key => $label ) {
277                         if ( isset( $post_data[ 'id3_' . $key ] ) ) {
278                                 $id3data[ $key ] = sanitize_text_field( wp_unslash( $post_data[ 'id3_' . $key ] ) );
279                         }
280                 }
281                 wp_update_attachment_metadata( $post_ID, $id3data );
282         }
283
284         // Meta Stuff
285         if ( isset($post_data['meta']) && $post_data['meta'] ) {
286                 foreach ( $post_data['meta'] as $key => $value ) {
287                         if ( !$meta = get_post_meta_by_id( $key ) )
288                                 continue;
289                         if ( $meta->post_id != $post_ID )
290                                 continue;
291                         if ( is_protected_meta( $meta->meta_key, 'post' ) || ! current_user_can( 'edit_post_meta', $post_ID, $meta->meta_key ) )
292                                 continue;
293                         if ( is_protected_meta( $value['key'], 'post' ) || ! current_user_can( 'edit_post_meta', $post_ID, $value['key'] ) )
294                                 continue;
295                         update_meta( $key, $value['key'], $value['value'] );
296                 }
297         }
298
299         if ( isset($post_data['deletemeta']) && $post_data['deletemeta'] ) {
300                 foreach ( $post_data['deletemeta'] as $key => $value ) {
301                         if ( !$meta = get_post_meta_by_id( $key ) )
302                                 continue;
303                         if ( $meta->post_id != $post_ID )
304                                 continue;
305                         if ( is_protected_meta( $meta->meta_key, 'post' ) || ! current_user_can( 'delete_post_meta', $post_ID, $meta->meta_key ) )
306                                 continue;
307                         delete_meta( $key );
308                 }
309         }
310
311         // Attachment stuff
312         if ( 'attachment' == $post_data['post_type'] ) {
313                 if ( isset( $post_data[ '_wp_attachment_image_alt' ] ) ) {
314                         $image_alt = wp_unslash( $post_data['_wp_attachment_image_alt'] );
315                         if ( $image_alt != get_post_meta( $post_ID, '_wp_attachment_image_alt', true ) ) {
316                                 $image_alt = wp_strip_all_tags( $image_alt, true );
317                                 // update_meta expects slashed.
318                                 update_post_meta( $post_ID, '_wp_attachment_image_alt', wp_slash( $image_alt ) );
319                         }
320                 }
321
322                 $attachment_data = isset( $post_data['attachments'][ $post_ID ] ) ? $post_data['attachments'][ $post_ID ] : array();
323
324                 /** This filter is documented in wp-admin/includes/media.php */
325                 $post_data = apply_filters( 'attachment_fields_to_save', $post_data, $attachment_data );
326         }
327
328         // Convert taxonomy input to term IDs, to avoid ambiguity.
329         if ( isset( $post_data['tax_input'] ) ) {
330                 foreach ( (array) $post_data['tax_input'] as $taxonomy => $terms ) {
331                         // Hierarchical taxonomy data is already sent as term IDs, so no conversion is necessary.
332                         if ( is_taxonomy_hierarchical( $taxonomy ) ) {
333                                 continue;
334                         }
335
336                         /*
337                          * Assume that a 'tax_input' string is a comma-separated list of term names.
338                          * Some languages may use a character other than a comma as a delimiter, so we standardize on
339                          * commas before parsing the list.
340                          */
341                         if ( ! is_array( $terms ) ) {
342                                 $comma = _x( ',', 'tag delimiter' );
343                                 if ( ',' !== $comma ) {
344                                         $terms = str_replace( $comma, ',', $terms );
345                                 }
346                                 $terms = explode( ',', trim( $terms, " \n\t\r\0\x0B," ) );
347                         }
348
349                         $clean_terms = array();
350                         foreach ( $terms as $term ) {
351                                 // Empty terms are invalid input.
352                                 if ( empty( $term ) ) {
353                                         continue;
354                                 }
355
356                                 $_term = get_terms( $taxonomy, array(
357                                         'name' => $term,
358                                         'fields' => 'ids',
359                                         'hide_empty' => false,
360                                 ) );
361
362                                 if ( ! empty( $_term ) ) {
363                                         $clean_terms[] = intval( $_term[0] );
364                                 } else {
365                                         // No existing term was found, so pass the string. A new term will be created.
366                                         $clean_terms[] = $term;
367                                 }
368                         }
369
370                         $post_data['tax_input'][ $taxonomy ] = $clean_terms;
371                 }
372         }
373
374         add_meta( $post_ID );
375
376         update_post_meta( $post_ID, '_edit_last', get_current_user_id() );
377
378         $success = wp_update_post( $post_data );
379         // If the save failed, see if we can sanity check the main fields and try again
380         if ( ! $success && is_callable( array( $wpdb, 'strip_invalid_text_for_column' ) ) ) {
381                 $fields = array( 'post_title', 'post_content', 'post_excerpt' );
382
383                 foreach ( $fields as $field ) {
384                         if ( isset( $post_data[ $field ] ) ) {
385                                 $post_data[ $field ] = $wpdb->strip_invalid_text_for_column( $wpdb->posts, $field, $post_data[ $field ] );
386                         }
387                 }
388
389                 wp_update_post( $post_data );
390         }
391
392         // Now that we have an ID we can fix any attachment anchor hrefs
393         _fix_attachment_links( $post_ID );
394
395         wp_set_post_lock( $post_ID );
396
397         if ( current_user_can( $ptype->cap->edit_others_posts ) && current_user_can( $ptype->cap->publish_posts ) ) {
398                 if ( ! empty( $post_data['sticky'] ) )
399                         stick_post( $post_ID );
400                 else
401                         unstick_post( $post_ID );
402         }
403
404         return $post_ID;
405 }
406
407 /**
408  * Process the post data for the bulk editing of posts.
409  *
410  * Updates all bulk edited posts/pages, adding (but not removing) tags and
411  * categories. Skips pages when they would be their own parent or child.
412  *
413  * @since 2.7.0
414  *
415  * @global wpdb $wpdb WordPress database abstraction object.
416  *
417  * @param array $post_data Optional, the array of post data to process if not provided will use $_POST superglobal.
418  * @return array
419  */
420 function bulk_edit_posts( $post_data = null ) {
421         global $wpdb;
422
423         if ( empty($post_data) )
424                 $post_data = &$_POST;
425
426         if ( isset($post_data['post_type']) )
427                 $ptype = get_post_type_object($post_data['post_type']);
428         else
429                 $ptype = get_post_type_object('post');
430
431         if ( !current_user_can( $ptype->cap->edit_posts ) ) {
432                 if ( 'page' == $ptype->name )
433                         wp_die( __('Sorry, you are not allowed to edit pages.'));
434                 else
435                         wp_die( __('Sorry, you are not allowed to edit posts.'));
436         }
437
438         if ( -1 == $post_data['_status'] ) {
439                 $post_data['post_status'] = null;
440                 unset($post_data['post_status']);
441         } else {
442                 $post_data['post_status'] = $post_data['_status'];
443         }
444         unset($post_data['_status']);
445
446         if ( ! empty( $post_data['post_status'] ) ) {
447                 $post_data['post_status'] = sanitize_key( $post_data['post_status'] );
448
449                 if ( 'inherit' == $post_data['post_status'] ) {
450                         unset( $post_data['post_status'] );
451                 }
452         }
453
454         $post_IDs = array_map( 'intval', (array) $post_data['post'] );
455
456         $reset = array(
457                 'post_author', 'post_status', 'post_password',
458                 'post_parent', 'page_template', 'comment_status',
459                 'ping_status', 'keep_private', 'tax_input',
460                 'post_category', 'sticky', 'post_format',
461         );
462
463         foreach ( $reset as $field ) {
464                 if ( isset($post_data[$field]) && ( '' == $post_data[$field] || -1 == $post_data[$field] ) )
465                         unset($post_data[$field]);
466         }
467
468         if ( isset($post_data['post_category']) ) {
469                 if ( is_array($post_data['post_category']) && ! empty($post_data['post_category']) )
470                         $new_cats = array_map( 'absint', $post_data['post_category'] );
471                 else
472                         unset($post_data['post_category']);
473         }
474
475         $tax_input = array();
476         if ( isset($post_data['tax_input'])) {
477                 foreach ( $post_data['tax_input'] as $tax_name => $terms ) {
478                         if ( empty($terms) )
479                                 continue;
480                         if ( is_taxonomy_hierarchical( $tax_name ) ) {
481                                 $tax_input[ $tax_name ] = array_map( 'absint', $terms );
482                         } else {
483                                 $comma = _x( ',', 'tag delimiter' );
484                                 if ( ',' !== $comma )
485                                         $terms = str_replace( $comma, ',', $terms );
486                                 $tax_input[ $tax_name ] = explode( ',', trim( $terms, " \n\t\r\0\x0B," ) );
487                         }
488                 }
489         }
490
491         if ( isset($post_data['post_parent']) && ($parent = (int) $post_data['post_parent']) ) {
492                 $pages = $wpdb->get_results("SELECT ID, post_parent FROM $wpdb->posts WHERE post_type = 'page'");
493                 $children = array();
494
495                 for ( $i = 0; $i < 50 && $parent > 0; $i++ ) {
496                         $children[] = $parent;
497
498                         foreach ( $pages as $page ) {
499                                 if ( $page->ID == $parent ) {
500                                         $parent = $page->post_parent;
501                                         break;
502                                 }
503                         }
504                 }
505         }
506
507         $updated = $skipped = $locked = array();
508         $shared_post_data = $post_data;
509
510         foreach ( $post_IDs as $post_ID ) {
511                 // Start with fresh post data with each iteration.
512                 $post_data = $shared_post_data;
513
514                 $post_type_object = get_post_type_object( get_post_type( $post_ID ) );
515
516                 if ( !isset( $post_type_object ) || ( isset($children) && in_array($post_ID, $children) ) || !current_user_can( 'edit_post', $post_ID ) ) {
517                         $skipped[] = $post_ID;
518                         continue;
519                 }
520
521                 if ( wp_check_post_lock( $post_ID ) ) {
522                         $locked[] = $post_ID;
523                         continue;
524                 }
525
526                 $post = get_post( $post_ID );
527                 $tax_names = get_object_taxonomies( $post );
528                 foreach ( $tax_names as $tax_name ) {
529                         $taxonomy_obj = get_taxonomy($tax_name);
530                         if ( isset( $tax_input[$tax_name]) && current_user_can( $taxonomy_obj->cap->assign_terms ) )
531                                 $new_terms = $tax_input[$tax_name];
532                         else
533                                 $new_terms = array();
534
535                         if ( $taxonomy_obj->hierarchical )
536                                 $current_terms = (array) wp_get_object_terms( $post_ID, $tax_name, array('fields' => 'ids') );
537                         else
538                                 $current_terms = (array) wp_get_object_terms( $post_ID, $tax_name, array('fields' => 'names') );
539
540                         $post_data['tax_input'][$tax_name] = array_merge( $current_terms, $new_terms );
541                 }
542
543                 if ( isset($new_cats) && in_array( 'category', $tax_names ) ) {
544                         $cats = (array) wp_get_post_categories($post_ID);
545                         $post_data['post_category'] = array_unique( array_merge($cats, $new_cats) );
546                         unset( $post_data['tax_input']['category'] );
547                 }
548
549                 $post_data['post_type'] = $post->post_type;
550                 $post_data['post_mime_type'] = $post->post_mime_type;
551                 $post_data['guid'] = $post->guid;
552
553                 foreach ( array( 'comment_status', 'ping_status', 'post_author' ) as $field ) {
554                         if ( ! isset( $post_data[ $field ] ) ) {
555                                 $post_data[ $field ] = $post->$field;
556                         }
557                 }
558
559                 $post_data['ID'] = $post_ID;
560                 $post_data['post_ID'] = $post_ID;
561
562                 $post_data = _wp_translate_postdata( true, $post_data );
563                 if ( is_wp_error( $post_data ) ) {
564                         $skipped[] = $post_ID;
565                         continue;
566                 }
567
568                 $updated[] = wp_update_post( $post_data );
569
570                 if ( isset( $post_data['sticky'] ) && current_user_can( $ptype->cap->edit_others_posts ) ) {
571                         if ( 'sticky' == $post_data['sticky'] )
572                                 stick_post( $post_ID );
573                         else
574                                 unstick_post( $post_ID );
575                 }
576
577                 if ( isset( $post_data['post_format'] ) )
578                         set_post_format( $post_ID, $post_data['post_format'] );
579         }
580
581         return array( 'updated' => $updated, 'skipped' => $skipped, 'locked' => $locked );
582 }
583
584 /**
585  * Default post information to use when populating the "Write Post" form.
586  *
587  * @since 2.0.0
588  *
589  * @param string $post_type    Optional. A post type string. Default 'post'.
590  * @param bool   $create_in_db Optional. Whether to insert the post into database. Default false.
591  * @return WP_Post Post object containing all the default post data as attributes
592  */
593 function get_default_post_to_edit( $post_type = 'post', $create_in_db = false ) {
594         $post_title = '';
595         if ( !empty( $_REQUEST['post_title'] ) )
596                 $post_title = esc_html( wp_unslash( $_REQUEST['post_title'] ));
597
598         $post_content = '';
599         if ( !empty( $_REQUEST['content'] ) )
600                 $post_content = esc_html( wp_unslash( $_REQUEST['content'] ));
601
602         $post_excerpt = '';
603         if ( !empty( $_REQUEST['excerpt'] ) )
604                 $post_excerpt = esc_html( wp_unslash( $_REQUEST['excerpt'] ));
605
606         if ( $create_in_db ) {
607                 $post_id = wp_insert_post( array( 'post_title' => __( 'Auto Draft' ), 'post_type' => $post_type, 'post_status' => 'auto-draft' ) );
608                 $post = get_post( $post_id );
609                 if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) && get_option( 'default_post_format' ) )
610                         set_post_format( $post, get_option( 'default_post_format' ) );
611         } else {
612                 $post = new stdClass;
613                 $post->ID = 0;
614                 $post->post_author = '';
615                 $post->post_date = '';
616                 $post->post_date_gmt = '';
617                 $post->post_password = '';
618                 $post->post_name = '';
619                 $post->post_type = $post_type;
620                 $post->post_status = 'draft';
621                 $post->to_ping = '';
622                 $post->pinged = '';
623                 $post->comment_status = get_default_comment_status( $post_type );
624                 $post->ping_status = get_default_comment_status( $post_type, 'pingback' );
625                 $post->post_pingback = get_option( 'default_pingback_flag' );
626                 $post->post_category = get_option( 'default_category' );
627                 $post->page_template = 'default';
628                 $post->post_parent = 0;
629                 $post->menu_order = 0;
630                 $post = new WP_Post( $post );
631         }
632
633         /**
634          * Filters the default post content initially used in the "Write Post" form.
635          *
636          * @since 1.5.0
637          *
638          * @param string  $post_content Default post content.
639          * @param WP_Post $post         Post object.
640          */
641         $post->post_content = apply_filters( 'default_content', $post_content, $post );
642
643         /**
644          * Filters the default post title initially used in the "Write Post" form.
645          *
646          * @since 1.5.0
647          *
648          * @param string  $post_title Default post title.
649          * @param WP_Post $post       Post object.
650          */
651         $post->post_title = apply_filters( 'default_title', $post_title, $post );
652
653         /**
654          * Filters the default post excerpt initially used in the "Write Post" form.
655          *
656          * @since 1.5.0
657          *
658          * @param string  $post_excerpt Default post excerpt.
659          * @param WP_Post $post         Post object.
660          */
661         $post->post_excerpt = apply_filters( 'default_excerpt', $post_excerpt, $post );
662
663         return $post;
664 }
665
666 /**
667  * Determine if a post exists based on title, content, and date
668  *
669  * @since 2.0.0
670  *
671  * @global wpdb $wpdb WordPress database abstraction object.
672  *
673  * @param string $title Post title
674  * @param string $content Optional post content
675  * @param string $date Optional post date
676  * @return int Post ID if post exists, 0 otherwise.
677  */
678 function post_exists($title, $content = '', $date = '') {
679         global $wpdb;
680
681         $post_title = wp_unslash( sanitize_post_field( 'post_title', $title, 0, 'db' ) );
682         $post_content = wp_unslash( sanitize_post_field( 'post_content', $content, 0, 'db' ) );
683         $post_date = wp_unslash( sanitize_post_field( 'post_date', $date, 0, 'db' ) );
684
685         $query = "SELECT ID FROM $wpdb->posts WHERE 1=1";
686         $args = array();
687
688         if ( !empty ( $date ) ) {
689                 $query .= ' AND post_date = %s';
690                 $args[] = $post_date;
691         }
692
693         if ( !empty ( $title ) ) {
694                 $query .= ' AND post_title = %s';
695                 $args[] = $post_title;
696         }
697
698         if ( !empty ( $content ) ) {
699                 $query .= ' AND post_content = %s';
700                 $args[] = $post_content;
701         }
702
703         if ( !empty ( $args ) )
704                 return (int) $wpdb->get_var( $wpdb->prepare($query, $args) );
705
706         return 0;
707 }
708
709 /**
710  * Creates a new post from the "Write Post" form using $_POST information.
711  *
712  * @since 2.1.0
713  *
714  * @global WP_User $current_user
715  *
716  * @return int|WP_Error
717  */
718 function wp_write_post() {
719         if ( isset($_POST['post_type']) )
720                 $ptype = get_post_type_object($_POST['post_type']);
721         else
722                 $ptype = get_post_type_object('post');
723
724         if ( !current_user_can( $ptype->cap->edit_posts ) ) {
725                 if ( 'page' == $ptype->name )
726                         return new WP_Error( 'edit_pages', __( 'Sorry, you are not allowed to create pages on this site.' ) );
727                 else
728                         return new WP_Error( 'edit_posts', __( 'Sorry, you are not allowed to create posts or drafts on this site.' ) );
729         }
730
731         $_POST['post_mime_type'] = '';
732
733         // Clear out any data in internal vars.
734         unset( $_POST['filter'] );
735
736         // Edit don't write if we have a post id.
737         if ( isset( $_POST['post_ID'] ) )
738                 return edit_post();
739
740         if ( isset($_POST['visibility']) ) {
741                 switch ( $_POST['visibility'] ) {
742                         case 'public' :
743                                 $_POST['post_password'] = '';
744                                 break;
745                         case 'password' :
746                                 unset( $_POST['sticky'] );
747                                 break;
748                         case 'private' :
749                                 $_POST['post_status'] = 'private';
750                                 $_POST['post_password'] = '';
751                                 unset( $_POST['sticky'] );
752                                 break;
753                 }
754         }
755
756         $translated = _wp_translate_postdata( false );
757         if ( is_wp_error($translated) )
758                 return $translated;
759
760         // Create the post.
761         $post_ID = wp_insert_post( $_POST );
762         if ( is_wp_error( $post_ID ) )
763                 return $post_ID;
764
765         if ( empty($post_ID) )
766                 return 0;
767
768         add_meta( $post_ID );
769
770         add_post_meta( $post_ID, '_edit_last', $GLOBALS['current_user']->ID );
771
772         // Now that we have an ID we can fix any attachment anchor hrefs
773         _fix_attachment_links( $post_ID );
774
775         wp_set_post_lock( $post_ID );
776
777         return $post_ID;
778 }
779
780 /**
781  * Calls wp_write_post() and handles the errors.
782  *
783  * @since 2.0.0
784  *
785  * @return int|null
786  */
787 function write_post() {
788         $result = wp_write_post();
789         if ( is_wp_error( $result ) )
790                 wp_die( $result->get_error_message() );
791         else
792                 return $result;
793 }
794
795 //
796 // Post Meta
797 //
798
799 /**
800  * Add post meta data defined in $_POST superglobal for post with given ID.
801  *
802  * @since 1.2.0
803  *
804  * @param int $post_ID
805  * @return int|bool
806  */
807 function add_meta( $post_ID ) {
808         $post_ID = (int) $post_ID;
809
810         $metakeyselect = isset($_POST['metakeyselect']) ? wp_unslash( trim( $_POST['metakeyselect'] ) ) : '';
811         $metakeyinput = isset($_POST['metakeyinput']) ? wp_unslash( trim( $_POST['metakeyinput'] ) ) : '';
812         $metavalue = isset($_POST['metavalue']) ? $_POST['metavalue'] : '';
813         if ( is_string( $metavalue ) )
814                 $metavalue = trim( $metavalue );
815
816         if ( ('0' === $metavalue || ! empty ( $metavalue ) ) && ( ( ( '#NONE#' != $metakeyselect ) && !empty ( $metakeyselect) ) || !empty ( $metakeyinput ) ) ) {
817                 /*
818                  * We have a key/value pair. If both the select and the input
819                  * for the key have data, the input takes precedence.
820                  */
821                 if ( '#NONE#' != $metakeyselect )
822                         $metakey = $metakeyselect;
823
824                 if ( $metakeyinput )
825                         $metakey = $metakeyinput; // default
826
827                 if ( is_protected_meta( $metakey, 'post' ) || ! current_user_can( 'add_post_meta', $post_ID, $metakey ) )
828                         return false;
829
830                 $metakey = wp_slash( $metakey );
831
832                 return add_post_meta( $post_ID, $metakey, $metavalue );
833         }
834
835         return false;
836 } // add_meta
837
838 /**
839  * Delete post meta data by meta ID.
840  *
841  * @since 1.2.0
842  *
843  * @param int $mid
844  * @return bool
845  */
846 function delete_meta( $mid ) {
847         return delete_metadata_by_mid( 'post' , $mid );
848 }
849
850 /**
851  * Get a list of previously defined keys.
852  *
853  * @since 1.2.0
854  *
855  * @global wpdb $wpdb WordPress database abstraction object.
856  *
857  * @return mixed
858  */
859 function get_meta_keys() {
860         global $wpdb;
861
862         $keys = $wpdb->get_col( "
863                         SELECT meta_key
864                         FROM $wpdb->postmeta
865                         GROUP BY meta_key
866                         ORDER BY meta_key" );
867
868         return $keys;
869 }
870
871 /**
872  * Get post meta data by meta ID.
873  *
874  * @since 2.1.0
875  *
876  * @param int $mid
877  * @return object|bool
878  */
879 function get_post_meta_by_id( $mid ) {
880         return get_metadata_by_mid( 'post', $mid );
881 }
882
883 /**
884  * Get meta data for the given post ID.
885  *
886  * @since 1.2.0
887  *
888  * @global wpdb $wpdb WordPress database abstraction object.
889  *
890  * @param int $postid
891  * @return mixed
892  */
893 function has_meta( $postid ) {
894         global $wpdb;
895
896         return $wpdb->get_results( $wpdb->prepare("SELECT meta_key, meta_value, meta_id, post_id
897                         FROM $wpdb->postmeta WHERE post_id = %d
898                         ORDER BY meta_key,meta_id", $postid), ARRAY_A );
899 }
900
901 /**
902  * Update post meta data by meta ID.
903  *
904  * @since 1.2.0
905  *
906  * @param int    $meta_id
907  * @param string $meta_key Expect Slashed
908  * @param string $meta_value Expect Slashed
909  * @return bool
910  */
911 function update_meta( $meta_id, $meta_key, $meta_value ) {
912         $meta_key = wp_unslash( $meta_key );
913         $meta_value = wp_unslash( $meta_value );
914
915         return update_metadata_by_mid( 'post', $meta_id, $meta_value, $meta_key );
916 }
917
918 //
919 // Private
920 //
921
922 /**
923  * Replace hrefs of attachment anchors with up-to-date permalinks.
924  *
925  * @since 2.3.0
926  * @access private
927  *
928  * @param int|object $post Post ID or post object.
929  * @return void|int|WP_Error Void if nothing fixed. 0 or WP_Error on update failure. The post ID on update success.
930  */
931 function _fix_attachment_links( $post ) {
932         $post = get_post( $post, ARRAY_A );
933         $content = $post['post_content'];
934
935         // Don't run if no pretty permalinks or post is not published, scheduled, or privately published.
936         if ( ! get_option( 'permalink_structure' ) || ! in_array( $post['post_status'], array( 'publish', 'future', 'private' ) ) )
937                 return;
938
939         // Short if there aren't any links or no '?attachment_id=' strings (strpos cannot be zero)
940         if ( !strpos($content, '?attachment_id=') || !preg_match_all( '/<a ([^>]+)>[\s\S]+?<\/a>/', $content, $link_matches ) )
941                 return;
942
943         $site_url = get_bloginfo('url');
944         $site_url = substr( $site_url, (int) strpos($site_url, '://') ); // remove the http(s)
945         $replace = '';
946
947         foreach ( $link_matches[1] as $key => $value ) {
948                 if ( !strpos($value, '?attachment_id=') || !strpos($value, 'wp-att-')
949                         || !preg_match( '/href=(["\'])[^"\']*\?attachment_id=(\d+)[^"\']*\\1/', $value, $url_match )
950                         || !preg_match( '/rel=["\'][^"\']*wp-att-(\d+)/', $value, $rel_match ) )
951                                 continue;
952
953                 $quote = $url_match[1]; // the quote (single or double)
954                 $url_id = (int) $url_match[2];
955                 $rel_id = (int) $rel_match[1];
956
957                 if ( !$url_id || !$rel_id || $url_id != $rel_id || strpos($url_match[0], $site_url) === false )
958                         continue;
959
960                 $link = $link_matches[0][$key];
961                 $replace = str_replace( $url_match[0], 'href=' . $quote . get_attachment_link( $url_id ) . $quote, $link );
962
963                 $content = str_replace( $link, $replace, $content );
964         }
965
966         if ( $replace ) {
967                 $post['post_content'] = $content;
968                 // Escape data pulled from DB.
969                 $post = add_magic_quotes($post);
970
971                 return wp_update_post($post);
972         }
973 }
974
975 /**
976  * Get all the possible statuses for a post_type
977  *
978  * @since 2.5.0
979  *
980  * @param string $type The post_type you want the statuses for
981  * @return array As array of all the statuses for the supplied post type
982  */
983 function get_available_post_statuses($type = 'post') {
984         $stati = wp_count_posts($type);
985
986         return array_keys(get_object_vars($stati));
987 }
988
989 /**
990  * Run the wp query to fetch the posts for listing on the edit posts page
991  *
992  * @since 2.5.0
993  *
994  * @param array|bool $q Array of query variables to use to build the query or false to use $_GET superglobal.
995  * @return array
996  */
997 function wp_edit_posts_query( $q = false ) {
998         if ( false === $q )
999                 $q = $_GET;
1000         $q['m'] = isset($q['m']) ? (int) $q['m'] : 0;
1001         $q['cat'] = isset($q['cat']) ? (int) $q['cat'] : 0;
1002         $post_stati  = get_post_stati();
1003
1004         if ( isset($q['post_type']) && in_array( $q['post_type'], get_post_types() ) )
1005                 $post_type = $q['post_type'];
1006         else
1007                 $post_type = 'post';
1008
1009         $avail_post_stati = get_available_post_statuses($post_type);
1010
1011         if ( isset($q['post_status']) && in_array( $q['post_status'], $post_stati ) ) {
1012                 $post_status = $q['post_status'];
1013                 $perm = 'readable';
1014         }
1015
1016         if ( isset( $q['orderby'] ) ) {
1017                 $orderby = $q['orderby'];
1018         } elseif ( isset( $q['post_status'] ) && in_array( $q['post_status'], array( 'pending', 'draft' ) ) ) {
1019                 $orderby = 'modified';
1020         }
1021
1022         if ( isset( $q['order'] ) ) {
1023                 $order = $q['order'];
1024         } elseif ( isset( $q['post_status'] ) && 'pending' == $q['post_status'] ) {
1025                 $order = 'ASC';
1026         }
1027
1028         $per_page = "edit_{$post_type}_per_page";
1029         $posts_per_page = (int) get_user_option( $per_page );
1030         if ( empty( $posts_per_page ) || $posts_per_page < 1 )
1031                 $posts_per_page = 20;
1032
1033         /**
1034          * Filters the number of items per page to show for a specific 'per_page' type.
1035          *
1036          * The dynamic portion of the hook name, `$post_type`, refers to the post type.
1037          *
1038          * Some examples of filter hooks generated here include: 'edit_attachment_per_page',
1039          * 'edit_post_per_page', 'edit_page_per_page', etc.
1040          *
1041          * @since 3.0.0
1042          *
1043          * @param int $posts_per_page Number of posts to display per page for the given post
1044          *                            type. Default 20.
1045          */
1046         $posts_per_page = apply_filters( "edit_{$post_type}_per_page", $posts_per_page );
1047
1048         /**
1049          * Filters the number of posts displayed per page when specifically listing "posts".
1050          *
1051          * @since 2.8.0
1052          *
1053          * @param int    $posts_per_page Number of posts to be displayed. Default 20.
1054          * @param string $post_type      The post type.
1055          */
1056         $posts_per_page = apply_filters( 'edit_posts_per_page', $posts_per_page, $post_type );
1057
1058         $query = compact('post_type', 'post_status', 'perm', 'order', 'orderby', 'posts_per_page');
1059
1060         // Hierarchical types require special args.
1061         if ( is_post_type_hierarchical( $post_type ) && !isset($orderby) ) {
1062                 $query['orderby'] = 'menu_order title';
1063                 $query['order'] = 'asc';
1064                 $query['posts_per_page'] = -1;
1065                 $query['posts_per_archive_page'] = -1;
1066                 $query['fields'] = 'id=>parent';
1067         }
1068
1069         if ( ! empty( $q['show_sticky'] ) )
1070                 $query['post__in'] = (array) get_option( 'sticky_posts' );
1071
1072         wp( $query );
1073
1074         return $avail_post_stati;
1075 }
1076
1077 /**
1078  * Get all available post MIME types for a given post type.
1079  *
1080  * @since 2.5.0
1081  *
1082  * @global wpdb $wpdb WordPress database abstraction object.
1083  *
1084  * @param string $type
1085  * @return mixed
1086  */
1087 function get_available_post_mime_types($type = 'attachment') {
1088         global $wpdb;
1089
1090         $types = $wpdb->get_col($wpdb->prepare("SELECT DISTINCT post_mime_type FROM $wpdb->posts WHERE post_type = %s", $type));
1091         return $types;
1092 }
1093
1094 /**
1095  * Get the query variables for the current attachments request.
1096  *
1097  * @since 4.2.0
1098  *
1099  * @param array|false $q Optional. Array of query variables to use to build the query or false
1100  *                       to use $_GET superglobal. Default false.
1101  * @return array The parsed query vars.
1102  */
1103 function wp_edit_attachments_query_vars( $q = false ) {
1104         if ( false === $q ) {
1105                 $q = $_GET;
1106         }
1107         $q['m']   = isset( $q['m'] ) ? (int) $q['m'] : 0;
1108         $q['cat'] = isset( $q['cat'] ) ? (int) $q['cat'] : 0;
1109         $q['post_type'] = 'attachment';
1110         $post_type = get_post_type_object( 'attachment' );
1111         $states = 'inherit';
1112         if ( current_user_can( $post_type->cap->read_private_posts ) ) {
1113                 $states .= ',private';
1114         }
1115
1116         $q['post_status'] = isset( $q['status'] ) && 'trash' == $q['status'] ? 'trash' : $states;
1117         $q['post_status'] = isset( $q['attachment-filter'] ) && 'trash' == $q['attachment-filter'] ? 'trash' : $states;
1118
1119         $media_per_page = (int) get_user_option( 'upload_per_page' );
1120         if ( empty( $media_per_page ) || $media_per_page < 1 ) {
1121                 $media_per_page = 20;
1122         }
1123
1124         /**
1125          * Filters the number of items to list per page when listing media items.
1126          *
1127          * @since 2.9.0
1128          *
1129          * @param int $media_per_page Number of media to list. Default 20.
1130          */
1131         $q['posts_per_page'] = apply_filters( 'upload_per_page', $media_per_page );
1132
1133         $post_mime_types = get_post_mime_types();
1134         if ( isset($q['post_mime_type']) && !array_intersect( (array) $q['post_mime_type'], array_keys($post_mime_types) ) ) {
1135                 unset($q['post_mime_type']);
1136         }
1137
1138         foreach ( array_keys( $post_mime_types ) as $type ) {
1139                 if ( isset( $q['attachment-filter'] ) && "post_mime_type:$type" == $q['attachment-filter'] ) {
1140                         $q['post_mime_type'] = $type;
1141                         break;
1142                 }
1143         }
1144
1145         if ( isset( $q['detached'] ) || ( isset( $q['attachment-filter'] ) && 'detached' == $q['attachment-filter'] ) ) {
1146                 $q['post_parent'] = 0;
1147         }
1148
1149         // Filter query clauses to include filenames.
1150         if ( isset( $q['s'] ) ) {
1151                 add_filter( 'posts_clauses', '_filter_query_attachment_filenames' );
1152         }
1153
1154         return $q;
1155 }
1156
1157 /**
1158  * Filter the SQL clauses of an attachment query to include filenames.
1159  *
1160  * @since 4.7.0
1161  * @access private
1162  *
1163  * @global wpdb $wpdb WordPress database abstraction object.
1164  *
1165  * @param array $clauses An array including WHERE, GROUP BY, JOIN, ORDER BY,
1166  *                       DISTINCT, fields (SELECT), and LIMITS clauses.
1167  * @return array The modified clauses.
1168  */
1169 function _filter_query_attachment_filenames( $clauses ) {
1170         global $wpdb;
1171         remove_filter( 'posts_clauses', __FUNCTION__ );
1172
1173         // Add a LEFT JOIN of the postmeta table so we don't trample existing JOINs.
1174         $clauses['join'] .= " LEFT JOIN {$wpdb->postmeta} AS sq1 ON ( {$wpdb->posts}.ID = sq1.post_id AND sq1.meta_key = '_wp_attached_file' )";
1175
1176         $clauses['groupby'] = "{$wpdb->posts}.ID";
1177
1178         $clauses['where'] = preg_replace(
1179                 "/\({$wpdb->posts}.post_content (NOT LIKE|LIKE) (\'[^']+\')\)/",
1180                 "$0 OR ( sq1.meta_value $1 $2 )",
1181                 $clauses['where'] );
1182
1183         return $clauses;
1184 }
1185
1186 /**
1187  * Executes a query for attachments. An array of WP_Query arguments
1188  * can be passed in, which will override the arguments set by this function.
1189  *
1190  * @since 2.5.0
1191  *
1192  * @param array|false $q Array of query variables to use to build the query or false to use $_GET superglobal.
1193  * @return array
1194  */
1195 function wp_edit_attachments_query( $q = false ) {
1196         wp( wp_edit_attachments_query_vars( $q ) );
1197
1198         $post_mime_types = get_post_mime_types();
1199         $avail_post_mime_types = get_available_post_mime_types( 'attachment' );
1200
1201         return array( $post_mime_types, $avail_post_mime_types );
1202 }
1203
1204 /**
1205  * Returns the list of classes to be used by a meta box.
1206  *
1207  * @since 2.5.0
1208  *
1209  * @param string $id
1210  * @param string $page
1211  * @return string
1212  */
1213 function postbox_classes( $id, $page ) {
1214         if ( isset( $_GET['edit'] ) && $_GET['edit'] == $id ) {
1215                 $classes = array( '' );
1216         } elseif ( $closed = get_user_option('closedpostboxes_'.$page ) ) {
1217                 if ( !is_array( $closed ) ) {
1218                         $classes = array( '' );
1219                 } else {
1220                         $classes = in_array( $id, $closed ) ? array( 'closed' ) : array( '' );
1221                 }
1222         } else {
1223                 $classes = array( '' );
1224         }
1225
1226         /**
1227          * Filters the postbox classes for a specific screen and screen ID combo.
1228          *
1229          * The dynamic portions of the hook name, `$page` and `$id`, refer to
1230          * the screen and screen ID, respectively.
1231          *
1232          * @since 3.2.0
1233          *
1234          * @param array $classes An array of postbox classes.
1235          */
1236         $classes = apply_filters( "postbox_classes_{$page}_{$id}", $classes );
1237         return implode( ' ', $classes );
1238 }
1239
1240 /**
1241  * Get a sample permalink based off of the post name.
1242  *
1243  * @since 2.5.0
1244  *
1245  * @param int    $id    Post ID or post object.
1246  * @param string $title Optional. Title to override the post's current title when generating the post name. Default null.
1247  * @param string $name  Optional. Name to override the post name. Default null.
1248  * @return array Array containing the sample permalink with placeholder for the post name, and the post name.
1249  */
1250 function get_sample_permalink($id, $title = null, $name = null) {
1251         $post = get_post( $id );
1252         if ( ! $post )
1253                 return array( '', '' );
1254
1255         $ptype = get_post_type_object($post->post_type);
1256
1257         $original_status = $post->post_status;
1258         $original_date = $post->post_date;
1259         $original_name = $post->post_name;
1260
1261         // Hack: get_permalink() would return ugly permalink for drafts, so we will fake that our post is published.
1262         if ( in_array( $post->post_status, array( 'draft', 'pending', 'future' ) ) ) {
1263                 $post->post_status = 'publish';
1264                 $post->post_name = sanitize_title($post->post_name ? $post->post_name : $post->post_title, $post->ID);
1265         }
1266
1267         // If the user wants to set a new name -- override the current one
1268         // Note: if empty name is supplied -- use the title instead, see #6072
1269         if ( !is_null($name) )
1270                 $post->post_name = sanitize_title($name ? $name : $title, $post->ID);
1271
1272         $post->post_name = wp_unique_post_slug($post->post_name, $post->ID, $post->post_status, $post->post_type, $post->post_parent);
1273
1274         $post->filter = 'sample';
1275
1276         $permalink = get_permalink($post, true);
1277
1278         // Replace custom post_type Token with generic pagename token for ease of use.
1279         $permalink = str_replace("%$post->post_type%", '%pagename%', $permalink);
1280
1281         // Handle page hierarchy
1282         if ( $ptype->hierarchical ) {
1283                 $uri = get_page_uri($post);
1284                 if ( $uri ) {
1285                         $uri = untrailingslashit($uri);
1286                         $uri = strrev( stristr( strrev( $uri ), '/' ) );
1287                         $uri = untrailingslashit($uri);
1288                 }
1289
1290                 /** This filter is documented in wp-admin/edit-tag-form.php */
1291                 $uri = apply_filters( 'editable_slug', $uri, $post );
1292                 if ( !empty($uri) )
1293                         $uri .= '/';
1294                 $permalink = str_replace('%pagename%', "{$uri}%pagename%", $permalink);
1295         }
1296
1297         /** This filter is documented in wp-admin/edit-tag-form.php */
1298         $permalink = array( $permalink, apply_filters( 'editable_slug', $post->post_name, $post ) );
1299         $post->post_status = $original_status;
1300         $post->post_date = $original_date;
1301         $post->post_name = $original_name;
1302         unset($post->filter);
1303
1304         /**
1305          * Filters the sample permalink.
1306          *
1307          * @since 4.4.0
1308          *
1309          * @param array   $permalink Array containing the sample permalink with placeholder for the post name, and the post name.
1310          * @param int     $post_id   Post ID.
1311          * @param string  $title     Post title.
1312          * @param string  $name      Post name (slug).
1313          * @param WP_Post $post      Post object.
1314          */
1315         return apply_filters( 'get_sample_permalink', $permalink, $post->ID, $title, $name, $post );
1316 }
1317
1318 /**
1319  * Returns the HTML of the sample permalink slug editor.
1320  *
1321  * @since 2.5.0
1322  *
1323  * @param int    $id        Post ID or post object.
1324  * @param string $new_title Optional. New title. Default null.
1325  * @param string $new_slug  Optional. New slug. Default null.
1326  * @return string The HTML of the sample permalink slug editor.
1327  */
1328 function get_sample_permalink_html( $id, $new_title = null, $new_slug = null ) {
1329         $post = get_post( $id );
1330         if ( ! $post )
1331                 return '';
1332
1333         list($permalink, $post_name) = get_sample_permalink($post->ID, $new_title, $new_slug);
1334
1335         $view_link = false;
1336         $preview_target = '';
1337
1338         if ( current_user_can( 'read_post', $post->ID ) ) {
1339                 if ( 'draft' === $post->post_status || empty( $post->post_name ) ) {
1340                         $view_link = get_preview_post_link( $post );
1341                         $preview_target = " target='wp-preview-{$post->ID}'";
1342                 } else {
1343                         if ( 'publish' === $post->post_status || 'attachment' === $post->post_type ) {
1344                                 $view_link = get_permalink( $post );
1345                         } else {
1346                                 // Allow non-published (private, future) to be viewed at a pretty permalink, in case $post->post_name is set
1347                                 $view_link = str_replace( array( '%pagename%', '%postname%' ), $post->post_name, $permalink );
1348                         }
1349                 }
1350         }
1351
1352         // Permalinks without a post/page name placeholder don't have anything to edit
1353         if ( false === strpos( $permalink, '%postname%' ) && false === strpos( $permalink, '%pagename%' ) ) {
1354                 $return = '<strong>' . __( 'Permalink:' ) . "</strong>\n";
1355
1356                 if ( false !== $view_link ) {
1357                         $display_link = urldecode( $view_link );
1358                         $return .= '<a id="sample-permalink" href="' . esc_url( $view_link ) . '"' . $preview_target . '>' . esc_html( $display_link ) . "</a>\n";
1359                 } else {
1360                         $return .= '<span id="sample-permalink">' . $permalink . "</span>\n";
1361                 }
1362
1363                 // Encourage a pretty permalink setting
1364                 if ( '' == get_option( 'permalink_structure' ) && current_user_can( 'manage_options' ) && !( 'page' == get_option('show_on_front') && $id == get_option('page_on_front') ) ) {
1365                         $return .= '<span id="change-permalinks"><a href="options-permalink.php" class="button button-small" target="_blank">' . __('Change Permalinks') . "</a></span>\n";
1366                 }
1367         } else {
1368                 if ( mb_strlen( $post_name ) > 34 ) {
1369                         $post_name_abridged = mb_substr( $post_name, 0, 16 ) . '&hellip;' . mb_substr( $post_name, -16 );
1370                 } else {
1371                         $post_name_abridged = $post_name;
1372                 }
1373
1374                 $post_name_html = '<span id="editable-post-name">' . esc_html( $post_name_abridged ) . '</span>';
1375                 $display_link = str_replace( array( '%pagename%', '%postname%' ), $post_name_html, esc_html( urldecode( $permalink ) ) );
1376
1377                 $return = '<strong>' . __( 'Permalink:' ) . "</strong>\n";
1378                 $return .= '<span id="sample-permalink"><a href="' . esc_url( $view_link ) . '"' . $preview_target . '>' . $display_link . "</a></span>\n";
1379                 $return .= '&lrm;'; // Fix bi-directional text display defect in RTL languages.
1380                 $return .= '<span id="edit-slug-buttons"><button type="button" class="edit-slug button button-small hide-if-no-js" aria-label="' . __( 'Edit permalink' ) . '">' . __( 'Edit' ) . "</button></span>\n";
1381                 $return .= '<span id="editable-post-name-full">' . esc_html( $post_name ) . "</span>\n";
1382         }
1383
1384         /**
1385          * Filters the sample permalink HTML markup.
1386          *
1387          * @since 2.9.0
1388          * @since 4.4.0 Added `$post` parameter.
1389          *
1390          * @param string  $return    Sample permalink HTML markup.
1391          * @param int     $post_id   Post ID.
1392          * @param string  $new_title New sample permalink title.
1393          * @param string  $new_slug  New sample permalink slug.
1394          * @param WP_Post $post      Post object.
1395          */
1396         $return = apply_filters( 'get_sample_permalink_html', $return, $post->ID, $new_title, $new_slug, $post );
1397
1398         return $return;
1399 }
1400
1401 /**
1402  * Output HTML for the post thumbnail meta-box.
1403  *
1404  * @since 2.9.0
1405  *
1406  * @param int $thumbnail_id ID of the attachment used for thumbnail
1407  * @param mixed $post The post ID or object associated with the thumbnail, defaults to global $post.
1408  * @return string html
1409  */
1410 function _wp_post_thumbnail_html( $thumbnail_id = null, $post = null ) {
1411         $_wp_additional_image_sizes = wp_get_additional_image_sizes();
1412
1413         $post               = get_post( $post );
1414         $post_type_object   = get_post_type_object( $post->post_type );
1415         $set_thumbnail_link = '<p class="hide-if-no-js"><a href="%s" id="set-post-thumbnail"%s class="thickbox">%s</a></p>';
1416         $upload_iframe_src  = get_upload_iframe_src( 'image', $post->ID );
1417
1418         $content = sprintf( $set_thumbnail_link,
1419                 esc_url( $upload_iframe_src ),
1420                 '', // Empty when there's no featured image set, `aria-describedby` attribute otherwise.
1421                 esc_html( $post_type_object->labels->set_featured_image )
1422         );
1423
1424         if ( $thumbnail_id && get_post( $thumbnail_id ) ) {
1425                 $size = isset( $_wp_additional_image_sizes['post-thumbnail'] ) ? 'post-thumbnail' : array( 266, 266 );
1426
1427                 /**
1428                  * Filters the size used to display the post thumbnail image in the 'Featured Image' meta box.
1429                  *
1430                  * Note: When a theme adds 'post-thumbnail' support, a special 'post-thumbnail'
1431                  * image size is registered, which differs from the 'thumbnail' image size
1432                  * managed via the Settings > Media screen. See the `$size` parameter description
1433                  * for more information on default values.
1434                  *
1435                  * @since 4.4.0
1436                  *
1437                  * @param string|array $size         Post thumbnail image size to display in the meta box. Accepts any valid
1438                  *                                   image size, or an array of width and height values in pixels (in that order).
1439                  *                                   If the 'post-thumbnail' size is set, default is 'post-thumbnail'. Otherwise,
1440                  *                                   default is an array with 266 as both the height and width values.
1441                  * @param int          $thumbnail_id Post thumbnail attachment ID.
1442                  * @param WP_Post      $post         The post object associated with the thumbnail.
1443                  */
1444                 $size = apply_filters( 'admin_post_thumbnail_size', $size, $thumbnail_id, $post );
1445
1446                 $thumbnail_html = wp_get_attachment_image( $thumbnail_id, $size );
1447
1448                 if ( ! empty( $thumbnail_html ) ) {
1449                         $content = sprintf( $set_thumbnail_link,
1450                                 esc_url( $upload_iframe_src ),
1451                                 ' aria-describedby="set-post-thumbnail-desc"',
1452                                 $thumbnail_html
1453                         );
1454                         $content .= '<p class="hide-if-no-js howto" id="set-post-thumbnail-desc">' . __( 'Click the image to edit or update' ) . '</p>';
1455                         $content .= '<p class="hide-if-no-js"><a href="#" id="remove-post-thumbnail">' . esc_html( $post_type_object->labels->remove_featured_image ) . '</a></p>';
1456                 }
1457         }
1458
1459         $content .= '<input type="hidden" id="_thumbnail_id" name="_thumbnail_id" value="' . esc_attr( $thumbnail_id ? $thumbnail_id : '-1' ) . '" />';
1460
1461         /**
1462          * Filters the admin post thumbnail HTML markup to return.
1463          *
1464          * @since 2.9.0
1465          * @since 3.5.0 Added the `$post_id` parameter.
1466          * @since 4.6.0 Added the `$thumbnail_id` parameter.
1467          *
1468          * @param string $content      Admin post thumbnail HTML markup.
1469          * @param int    $post_id      Post ID.
1470          * @param int    $thumbnail_id Thumbnail ID.
1471          */
1472         return apply_filters( 'admin_post_thumbnail_html', $content, $post->ID, $thumbnail_id );
1473 }
1474
1475 /**
1476  * Check to see if the post is currently being edited by another user.
1477  *
1478  * @since 2.5.0
1479  *
1480  * @param int $post_id ID of the post to check for editing
1481  * @return integer False: not locked or locked by current user. Int: user ID of user with lock.
1482  */
1483 function wp_check_post_lock( $post_id ) {
1484         if ( !$post = get_post( $post_id ) )
1485                 return false;
1486
1487         if ( !$lock = get_post_meta( $post->ID, '_edit_lock', true ) )
1488                 return false;
1489
1490         $lock = explode( ':', $lock );
1491         $time = $lock[0];
1492         $user = isset( $lock[1] ) ? $lock[1] : get_post_meta( $post->ID, '_edit_last', true );
1493
1494         /** This filter is documented in wp-admin/includes/ajax-actions.php */
1495         $time_window = apply_filters( 'wp_check_post_lock_window', 150 );
1496
1497         if ( $time && $time > time() - $time_window && $user != get_current_user_id() )
1498                 return $user;
1499         return false;
1500 }
1501
1502 /**
1503  * Mark the post as currently being edited by the current user
1504  *
1505  * @since 2.5.0
1506  *
1507  * @param int $post_id ID of the post to being edited
1508  * @return bool|array Returns false if the post doesn't exist of there is no current user, or
1509  *      an array of the lock time and the user ID.
1510  */
1511 function wp_set_post_lock( $post_id ) {
1512         if ( !$post = get_post( $post_id ) )
1513                 return false;
1514         if ( 0 == ($user_id = get_current_user_id()) )
1515                 return false;
1516
1517         $now = time();
1518         $lock = "$now:$user_id";
1519
1520         update_post_meta( $post->ID, '_edit_lock', $lock );
1521         return array( $now, $user_id );
1522 }
1523
1524 /**
1525  * Outputs the HTML for the notice to say that someone else is editing or has taken over editing of this post.
1526  *
1527  * @since 2.8.5
1528  * @return none
1529  */
1530 function _admin_notice_post_locked() {
1531         if ( ! $post = get_post() )
1532                 return;
1533
1534         $user = null;
1535         if (  $user_id = wp_check_post_lock( $post->ID ) )
1536                 $user = get_userdata( $user_id );
1537
1538         if ( $user ) {
1539
1540                 /**
1541                  * Filters whether to show the post locked dialog.
1542                  *
1543                  * Returning a falsey value to the filter will short-circuit displaying the dialog.
1544                  *
1545                  * @since 3.6.0
1546                  *
1547                  * @param bool         $display Whether to display the dialog. Default true.
1548                  * @param WP_User|bool $user    WP_User object on success, false otherwise.
1549                  */
1550                 if ( ! apply_filters( 'show_post_locked_dialog', true, $post, $user ) )
1551                         return;
1552
1553                 $locked = true;
1554         } else {
1555                 $locked = false;
1556         }
1557
1558         if ( $locked && ( $sendback = wp_get_referer() ) &&
1559                 false === strpos( $sendback, 'post.php' ) && false === strpos( $sendback, 'post-new.php' ) ) {
1560
1561                 $sendback_text = __('Go back');
1562         } else {
1563                 $sendback = admin_url( 'edit.php' );
1564
1565                 if ( 'post' != $post->post_type )
1566                         $sendback = add_query_arg( 'post_type', $post->post_type, $sendback );
1567
1568                 $sendback_text = get_post_type_object( $post->post_type )->labels->all_items;
1569         }
1570
1571         $hidden = $locked ? '' : ' hidden';
1572
1573         ?>
1574         <div id="post-lock-dialog" class="notification-dialog-wrap<?php echo $hidden; ?>">
1575         <div class="notification-dialog-background"></div>
1576         <div class="notification-dialog">
1577         <?php
1578
1579         if ( $locked ) {
1580                 $query_args = array();
1581                 if ( get_post_type_object( $post->post_type )->public ) {
1582                         if ( 'publish' == $post->post_status || $user->ID != $post->post_author ) {
1583                                 // Latest content is in autosave
1584                                 $nonce = wp_create_nonce( 'post_preview_' . $post->ID );
1585                                 $query_args['preview_id'] = $post->ID;
1586                                 $query_args['preview_nonce'] = $nonce;
1587                         }
1588                 }
1589
1590                 $preview_link = get_preview_post_link( $post->ID, $query_args );
1591
1592                 /**
1593                  * Filters whether to allow the post lock to be overridden.
1594                  *
1595                  * Returning a falsey value to the filter will disable the ability
1596                  * to override the post lock.
1597                  *
1598                  * @since 3.6.0
1599                  *
1600                  * @param bool    $override Whether to allow overriding post locks. Default true.
1601                  * @param WP_Post $post     Post object.
1602                  * @param WP_User $user     User object.
1603                  */
1604                 $override = apply_filters( 'override_post_lock', true, $post, $user );
1605                 $tab_last = $override ? '' : ' wp-tab-last';
1606
1607                 ?>
1608                 <div class="post-locked-message">
1609                 <div class="post-locked-avatar"><?php echo get_avatar( $user->ID, 64 ); ?></div>
1610                 <p class="currently-editing wp-tab-first" tabindex="0">
1611                 <?php
1612                         _e( 'This content is currently locked.' );
1613                         if ( $override )
1614                                 printf( ' ' . __( 'If you take over, %s will be blocked from continuing to edit.' ), esc_html( $user->display_name ) );
1615                 ?>
1616                 </p>
1617                 <?php
1618                 /**
1619                  * Fires inside the post locked dialog before the buttons are displayed.
1620                  *
1621                  * @since 3.6.0
1622                  *
1623                  * @param WP_Post $post Post object.
1624                  */
1625                 do_action( 'post_locked_dialog', $post );
1626                 ?>
1627                 <p>
1628                 <a class="button" href="<?php echo esc_url( $sendback ); ?>"><?php echo $sendback_text; ?></a>
1629                 <?php if ( $preview_link ) { ?>
1630                 <a class="button<?php echo $tab_last; ?>" href="<?php echo esc_url( $preview_link ); ?>"><?php _e('Preview'); ?></a>
1631                 <?php
1632                 }
1633
1634                 // Allow plugins to prevent some users overriding the post lock
1635                 if ( $override ) {
1636                         ?>
1637                         <a class="button button-primary wp-tab-last" href="<?php echo esc_url( add_query_arg( 'get-post-lock', '1', wp_nonce_url( get_edit_post_link( $post->ID, 'url' ), 'lock-post_' . $post->ID ) ) ); ?>"><?php _e('Take over'); ?></a>
1638                         <?php
1639                 }
1640
1641                 ?>
1642                 </p>
1643                 </div>
1644                 <?php
1645         } else {
1646                 ?>
1647                 <div class="post-taken-over">
1648                         <div class="post-locked-avatar"></div>
1649                         <p class="wp-tab-first" tabindex="0">
1650                         <span class="currently-editing"></span><br />
1651                         <span class="locked-saving hidden"><img src="<?php echo esc_url( admin_url( 'images/spinner-2x.gif' ) ); ?>" width="16" height="16" alt="" /> <?php _e( 'Saving revision&hellip;' ); ?></span>
1652                         <span class="locked-saved hidden"><?php _e('Your latest changes were saved as a revision.'); ?></span>
1653                         </p>
1654                         <?php
1655                         /**
1656                          * Fires inside the dialog displayed when a user has lost the post lock.
1657                          *
1658                          * @since 3.6.0
1659                          *
1660                          * @param WP_Post $post Post object.
1661                          */
1662                         do_action( 'post_lock_lost_dialog', $post );
1663                         ?>
1664                         <p><a class="button button-primary wp-tab-last" href="<?php echo esc_url( $sendback ); ?>"><?php echo $sendback_text; ?></a></p>
1665                 </div>
1666                 <?php
1667         }
1668
1669         ?>
1670         </div>
1671         </div>
1672         <?php
1673 }
1674
1675 /**
1676  * Creates autosave data for the specified post from $_POST data.
1677  *
1678  * @package WordPress
1679  * @subpackage Post_Revisions
1680  * @since 2.6.0
1681  *
1682  * @param mixed $post_data Associative array containing the post data or int post ID.
1683  * @return mixed The autosave revision ID. WP_Error or 0 on error.
1684  */
1685 function wp_create_post_autosave( $post_data ) {
1686         if ( is_numeric( $post_data ) ) {
1687                 $post_id = $post_data;
1688                 $post_data = $_POST;
1689         } else {
1690                 $post_id = (int) $post_data['post_ID'];
1691         }
1692
1693         $post_data = _wp_translate_postdata( true, $post_data );
1694         if ( is_wp_error( $post_data ) )
1695                 return $post_data;
1696
1697         $post_author = get_current_user_id();
1698
1699         // Store one autosave per author. If there is already an autosave, overwrite it.
1700         if ( $old_autosave = wp_get_post_autosave( $post_id, $post_author ) ) {
1701                 $new_autosave = _wp_post_revision_data( $post_data, true );
1702                 $new_autosave['ID'] = $old_autosave->ID;
1703                 $new_autosave['post_author'] = $post_author;
1704
1705                 // If the new autosave has the same content as the post, delete the autosave.
1706                 $post = get_post( $post_id );
1707                 $autosave_is_different = false;
1708                 foreach ( array_intersect( array_keys( $new_autosave ), array_keys( _wp_post_revision_fields( $post ) ) ) as $field ) {
1709                         if ( normalize_whitespace( $new_autosave[ $field ] ) != normalize_whitespace( $post->$field ) ) {
1710                                 $autosave_is_different = true;
1711                                 break;
1712                         }
1713                 }
1714
1715                 if ( ! $autosave_is_different ) {
1716                         wp_delete_post_revision( $old_autosave->ID );
1717                         return 0;
1718                 }
1719
1720                 /**
1721                  * Fires before an autosave is stored.
1722                  *
1723                  * @since 4.1.0
1724                  *
1725                  * @param array $new_autosave Post array - the autosave that is about to be saved.
1726                  */
1727                 do_action( 'wp_creating_autosave', $new_autosave );
1728
1729                 return wp_update_post( $new_autosave );
1730         }
1731
1732         // _wp_put_post_revision() expects unescaped.
1733         $post_data = wp_unslash( $post_data );
1734
1735         // Otherwise create the new autosave as a special post revision
1736         return _wp_put_post_revision( $post_data, true );
1737 }
1738
1739 /**
1740  * Save draft or manually autosave for showing preview.
1741  *
1742  * @package WordPress
1743  * @since 2.7.0
1744  *
1745  * @return str URL to redirect to show the preview
1746  */
1747 function post_preview() {
1748
1749         $post_ID = (int) $_POST['post_ID'];
1750         $_POST['ID'] = $post_ID;
1751
1752         if ( ! $post = get_post( $post_ID ) ) {
1753                 wp_die( __( 'Sorry, you are not allowed to edit this post.' ) );
1754         }
1755
1756         if ( ! current_user_can( 'edit_post', $post->ID ) ) {
1757                 wp_die( __( 'Sorry, you are not allowed to edit this post.' ) );
1758         }
1759
1760         $is_autosave = false;
1761
1762         if ( ! wp_check_post_lock( $post->ID ) && get_current_user_id() == $post->post_author && ( 'draft' == $post->post_status || 'auto-draft' == $post->post_status ) ) {
1763                 $saved_post_id = edit_post();
1764         } else {
1765                 $is_autosave = true;
1766
1767                 if ( isset( $_POST['post_status'] ) && 'auto-draft' == $_POST['post_status'] )
1768                         $_POST['post_status'] = 'draft';
1769
1770                 $saved_post_id = wp_create_post_autosave( $post->ID );
1771         }
1772
1773         if ( is_wp_error( $saved_post_id ) )
1774                 wp_die( $saved_post_id->get_error_message() );
1775
1776         $query_args = array();
1777
1778         if ( $is_autosave && $saved_post_id ) {
1779                 $query_args['preview_id'] = $post->ID;
1780                 $query_args['preview_nonce'] = wp_create_nonce( 'post_preview_' . $post->ID );
1781
1782                 if ( isset( $_POST['post_format'] ) ) {
1783                         $query_args['post_format'] = empty( $_POST['post_format'] ) ? 'standard' : sanitize_key( $_POST['post_format'] );
1784                 }
1785
1786                 if ( isset( $_POST['_thumbnail_id'] ) ) {
1787                         $query_args['_thumbnail_id'] = ( intval( $_POST['_thumbnail_id'] ) <= 0 ) ? '-1' : intval( $_POST['_thumbnail_id'] );
1788                 }
1789         }
1790
1791         return get_preview_post_link( $post, $query_args );
1792 }
1793
1794 /**
1795  * Save a post submitted with XHR
1796  *
1797  * Intended for use with heartbeat and autosave.js
1798  *
1799  * @since 3.9.0
1800  *
1801  * @param array $post_data Associative array of the submitted post data.
1802  * @return mixed The value 0 or WP_Error on failure. The saved post ID on success.
1803  *               The ID can be the draft post_id or the autosave revision post_id.
1804  */
1805 function wp_autosave( $post_data ) {
1806         // Back-compat
1807         if ( ! defined( 'DOING_AUTOSAVE' ) )
1808                 define( 'DOING_AUTOSAVE', true );
1809
1810         $post_id = (int) $post_data['post_id'];
1811         $post_data['ID'] = $post_data['post_ID'] = $post_id;
1812
1813         if ( false === wp_verify_nonce( $post_data['_wpnonce'], 'update-post_' . $post_id ) ) {
1814                 return new WP_Error( 'invalid_nonce', __( 'Error while saving.' ) );
1815         }
1816
1817         $post = get_post( $post_id );
1818
1819         if ( ! current_user_can( 'edit_post', $post->ID ) ) {
1820                 return new WP_Error( 'edit_posts', __( 'Sorry, you are not allowed to edit this item.' ) );
1821         }
1822
1823         if ( 'auto-draft' == $post->post_status )
1824                 $post_data['post_status'] = 'draft';
1825
1826         if ( $post_data['post_type'] != 'page' && ! empty( $post_data['catslist'] ) )
1827                 $post_data['post_category'] = explode( ',', $post_data['catslist'] );
1828
1829         if ( ! wp_check_post_lock( $post->ID ) && get_current_user_id() == $post->post_author && ( 'auto-draft' == $post->post_status || 'draft' == $post->post_status ) ) {
1830                 // Drafts and auto-drafts are just overwritten by autosave for the same user if the post is not locked
1831                 return edit_post( wp_slash( $post_data ) );
1832         } else {
1833                 // Non drafts or other users drafts are not overwritten. The autosave is stored in a special post revision for each user.
1834                 return wp_create_post_autosave( wp_slash( $post_data ) );
1835         }
1836 }
1837
1838 /**
1839  * Redirect to previous page.
1840  *
1841  * @param int $post_id Optional. Post ID.
1842  */
1843 function redirect_post($post_id = '') {
1844         if ( isset($_POST['save']) || isset($_POST['publish']) ) {
1845                 $status = get_post_status( $post_id );
1846
1847                 if ( isset( $_POST['publish'] ) ) {
1848                         switch ( $status ) {
1849                                 case 'pending':
1850                                         $message = 8;
1851                                         break;
1852                                 case 'future':
1853                                         $message = 9;
1854                                         break;
1855                                 default:
1856                                         $message = 6;
1857                         }
1858                 } else {
1859                         $message = 'draft' == $status ? 10 : 1;
1860                 }
1861
1862                 $location = add_query_arg( 'message', $message, get_edit_post_link( $post_id, 'url' ) );
1863         } elseif ( isset($_POST['addmeta']) && $_POST['addmeta'] ) {
1864                 $location = add_query_arg( 'message', 2, wp_get_referer() );
1865                 $location = explode('#', $location);
1866                 $location = $location[0] . '#postcustom';
1867         } elseif ( isset($_POST['deletemeta']) && $_POST['deletemeta'] ) {
1868                 $location = add_query_arg( 'message', 3, wp_get_referer() );
1869                 $location = explode('#', $location);
1870                 $location = $location[0] . '#postcustom';
1871         } else {
1872                 $location = add_query_arg( 'message', 4, get_edit_post_link( $post_id, 'url' ) );
1873         }
1874
1875         /**
1876          * Filters the post redirect destination URL.
1877          *
1878          * @since 2.9.0
1879          *
1880          * @param string $location The destination URL.
1881          * @param int    $post_id  The post ID.
1882          */
1883         wp_redirect( apply_filters( 'redirect_post_location', $location, $post_id ) );
1884         exit;
1885 }