]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/post.php
WordPress 3.5.1-scripts
[autoinstalls/wordpress.git] / wp-includes / post.php
1 <?php
2 /**
3  * Post functions and post utility function.
4  *
5  * @package WordPress
6  * @subpackage Post
7  * @since 1.5.0
8  */
9
10 //
11 // Post Type Registration
12 //
13
14 /**
15  * Creates the initial post types when 'init' action is fired.
16  *
17  * @since 2.9.0
18  */
19 function create_initial_post_types() {
20         register_post_type( 'post', array(
21                 'labels' => array(
22                         'name_admin_bar' => _x( 'Post', 'add new on admin bar' ),
23                 ),
24                 'public'  => true,
25                 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
26                 '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */
27                 'capability_type' => 'post',
28                 'map_meta_cap' => true,
29                 'hierarchical' => false,
30                 'rewrite' => false,
31                 'query_var' => false,
32                 'delete_with_user' => true,
33                 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'post-formats' ),
34         ) );
35
36         register_post_type( 'page', array(
37                 'labels' => array(
38                         'name_admin_bar' => _x( 'Page', 'add new on admin bar' ),
39                 ),
40                 'public' => true,
41                 'publicly_queryable' => false,
42                 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
43                 '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */
44                 'capability_type' => 'page',
45                 'map_meta_cap' => true,
46                 'hierarchical' => true,
47                 'rewrite' => false,
48                 'query_var' => false,
49                 'delete_with_user' => true,
50                 'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'page-attributes', 'custom-fields', 'comments', 'revisions' ),
51         ) );
52
53         register_post_type( 'attachment', array(
54                 'labels' => array(
55                         'name' => _x('Media', 'post type general name'),
56                         'name_admin_bar' => _x( 'Media', 'add new from admin bar' ),
57                         'add_new' => _x( 'Add New', 'add new media' ),
58                         'edit_item' => __( 'Edit Media' ),
59                         'view_item' => __( 'View Attachment Page' ),
60                 ),
61                 'public' => true,
62                 'show_ui' => true,
63                 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
64                 '_edit_link' => 'post.php?post=%d', /* internal use only. don't use this when registering your own post type. */
65                 'capability_type' => 'post',
66                 'capabilities' => array(
67                         'create_posts' => 'upload_files',
68                 ),
69                 'map_meta_cap' => true,
70                 'hierarchical' => false,
71                 'rewrite' => false,
72                 'query_var' => false,
73                 'show_in_nav_menus' => false,
74                 'delete_with_user' => true,
75                 'supports' => array( 'title', 'author', 'comments' ),
76         ) );
77
78         register_post_type( 'revision', array(
79                 'labels' => array(
80                         'name' => __( 'Revisions' ),
81                         'singular_name' => __( 'Revision' ),
82                 ),
83                 'public' => false,
84                 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
85                 '_edit_link' => 'revision.php?revision=%d', /* internal use only. don't use this when registering your own post type. */
86                 'capability_type' => 'post',
87                 'map_meta_cap' => true,
88                 'hierarchical' => false,
89                 'rewrite' => false,
90                 'query_var' => false,
91                 'can_export' => false,
92                 'delete_with_user' => true,
93                 'supports' => array( 'author' ),
94         ) );
95
96         register_post_type( 'nav_menu_item', array(
97                 'labels' => array(
98                         'name' => __( 'Navigation Menu Items' ),
99                         'singular_name' => __( 'Navigation Menu Item' ),
100                 ),
101                 'public' => false,
102                 '_builtin' => true, /* internal use only. don't use this when registering your own post type. */
103                 'hierarchical' => false,
104                 'rewrite' => false,
105                 'delete_with_user' => false,
106                 'query_var' => false,
107         ) );
108
109         register_post_status( 'publish', array(
110                 'label'       => _x( 'Published', 'post' ),
111                 'public'      => true,
112                 '_builtin'    => true, /* internal use only. */
113                 'label_count' => _n_noop( 'Published <span class="count">(%s)</span>', 'Published <span class="count">(%s)</span>' ),
114         ) );
115
116         register_post_status( 'future', array(
117                 'label'       => _x( 'Scheduled', 'post' ),
118                 'protected'   => true,
119                 '_builtin'    => true, /* internal use only. */
120                 'label_count' => _n_noop('Scheduled <span class="count">(%s)</span>', 'Scheduled <span class="count">(%s)</span>' ),
121         ) );
122
123         register_post_status( 'draft', array(
124                 'label'       => _x( 'Draft', 'post' ),
125                 'protected'   => true,
126                 '_builtin'    => true, /* internal use only. */
127                 'label_count' => _n_noop( 'Draft <span class="count">(%s)</span>', 'Drafts <span class="count">(%s)</span>' ),
128         ) );
129
130         register_post_status( 'pending', array(
131                 'label'       => _x( 'Pending', 'post' ),
132                 'protected'   => true,
133                 '_builtin'    => true, /* internal use only. */
134                 'label_count' => _n_noop( 'Pending <span class="count">(%s)</span>', 'Pending <span class="count">(%s)</span>' ),
135         ) );
136
137         register_post_status( 'private', array(
138                 'label'       => _x( 'Private', 'post' ),
139                 'private'     => true,
140                 '_builtin'    => true, /* internal use only. */
141                 'label_count' => _n_noop( 'Private <span class="count">(%s)</span>', 'Private <span class="count">(%s)</span>' ),
142         ) );
143
144         register_post_status( 'trash', array(
145                 'label'       => _x( 'Trash', 'post' ),
146                 'internal'    => true,
147                 '_builtin'    => true, /* internal use only. */
148                 'label_count' => _n_noop( 'Trash <span class="count">(%s)</span>', 'Trash <span class="count">(%s)</span>' ),
149                 'show_in_admin_status_list' => true,
150         ) );
151
152         register_post_status( 'auto-draft', array(
153                 'label'    => 'auto-draft',
154                 'internal' => true,
155                 '_builtin' => true, /* internal use only. */
156         ) );
157
158         register_post_status( 'inherit', array(
159                 'label'    => 'inherit',
160                 'internal' => true,
161                 '_builtin' => true, /* internal use only. */
162                 'exclude_from_search' => false,
163         ) );
164 }
165 add_action( 'init', 'create_initial_post_types', 0 ); // highest priority
166
167 /**
168  * Retrieve attached file path based on attachment ID.
169  *
170  * You can optionally send it through the 'get_attached_file' filter, but by
171  * default it will just return the file path unfiltered.
172  *
173  * The function works by getting the single post meta name, named
174  * '_wp_attached_file' and returning it. This is a convenience function to
175  * prevent looking up the meta name and provide a mechanism for sending the
176  * attached filename through a filter.
177  *
178  * @since 2.0.0
179  * @uses apply_filters() Calls 'get_attached_file' on file path and attachment ID.
180  *
181  * @param int $attachment_id Attachment ID.
182  * @param bool $unfiltered Whether to apply filters.
183  * @return string|bool The file path to the attached file, or false if the attachment does not exist.
184  */
185 function get_attached_file( $attachment_id, $unfiltered = false ) {
186         $file = get_post_meta( $attachment_id, '_wp_attached_file', true );
187         // If the file is relative, prepend upload dir
188         if ( $file && 0 !== strpos($file, '/') && !preg_match('|^.:\\\|', $file) && ( ($uploads = wp_upload_dir()) && false === $uploads['error'] ) )
189                 $file = $uploads['basedir'] . "/$file";
190         if ( $unfiltered )
191                 return $file;
192         return apply_filters( 'get_attached_file', $file, $attachment_id );
193 }
194
195 /**
196  * Update attachment file path based on attachment ID.
197  *
198  * Used to update the file path of the attachment, which uses post meta name
199  * '_wp_attached_file' to store the path of the attachment.
200  *
201  * @since 2.1.0
202  * @uses apply_filters() Calls 'update_attached_file' on file path and attachment ID.
203  *
204  * @param int $attachment_id Attachment ID
205  * @param string $file File path for the attachment
206  * @return bool False on failure, true on success.
207  */
208 function update_attached_file( $attachment_id, $file ) {
209         if ( !get_post( $attachment_id ) )
210                 return false;
211
212         $file = apply_filters( 'update_attached_file', $file, $attachment_id );
213         if ( $file = _wp_relative_upload_path( $file ) )
214                 return update_post_meta( $attachment_id, '_wp_attached_file', $file );
215         else
216                 return delete_post_meta( $attachment_id, '_wp_attached_file' );
217 }
218
219 /**
220  * Return relative path to an uploaded file.
221  *
222  * The path is relative to the current upload dir.
223  *
224  * @since 2.9.0
225  * @uses apply_filters() Calls '_wp_relative_upload_path' on file path.
226  *
227  * @param string $path Full path to the file
228  * @return string relative path on success, unchanged path on failure.
229  */
230 function _wp_relative_upload_path( $path ) {
231         $new_path = $path;
232
233         $uploads = wp_upload_dir();
234         if ( 0 === strpos( $new_path, $uploads['basedir'] ) ) {
235                         $new_path = str_replace( $uploads['basedir'], '', $new_path );
236                         $new_path = ltrim( $new_path, '/' );
237         }
238
239         return apply_filters( '_wp_relative_upload_path', $new_path, $path );
240 }
241
242 /**
243  * Retrieve all children of the post parent ID.
244  *
245  * Normally, without any enhancements, the children would apply to pages. In the
246  * context of the inner workings of WordPress, pages, posts, and attachments
247  * share the same table, so therefore the functionality could apply to any one
248  * of them. It is then noted that while this function does not work on posts, it
249  * does not mean that it won't work on posts. It is recommended that you know
250  * what context you wish to retrieve the children of.
251  *
252  * Attachments may also be made the child of a post, so if that is an accurate
253  * statement (which needs to be verified), it would then be possible to get
254  * all of the attachments for a post. Attachments have since changed since
255  * version 2.5, so this is most likely unaccurate, but serves generally as an
256  * example of what is possible.
257  *
258  * The arguments listed as defaults are for this function and also of the
259  * {@link get_posts()} function. The arguments are combined with the
260  * get_children defaults and are then passed to the {@link get_posts()}
261  * function, which accepts additional arguments. You can replace the defaults in
262  * this function, listed below and the additional arguments listed in the
263  * {@link get_posts()} function.
264  *
265  * The 'post_parent' is the most important argument and important attention
266  * needs to be paid to the $args parameter. If you pass either an object or an
267  * integer (number), then just the 'post_parent' is grabbed and everything else
268  * is lost. If you don't specify any arguments, then it is assumed that you are
269  * in The Loop and the post parent will be grabbed for from the current post.
270  *
271  * The 'post_parent' argument is the ID to get the children. The 'numberposts'
272  * is the amount of posts to retrieve that has a default of '-1', which is
273  * used to get all of the posts. Giving a number higher than 0 will only
274  * retrieve that amount of posts.
275  *
276  * The 'post_type' and 'post_status' arguments can be used to choose what
277  * criteria of posts to retrieve. The 'post_type' can be anything, but WordPress
278  * post types are 'post', 'pages', and 'attachments'. The 'post_status'
279  * argument will accept any post status within the write administration panels.
280  *
281  * @see get_posts() Has additional arguments that can be replaced.
282  * @internal Claims made in the long description might be inaccurate.
283  *
284  * @since 2.0.0
285  *
286  * @param mixed $args Optional. User defined arguments for replacing the defaults.
287  * @param string $output Optional. Constant for return type, either OBJECT (default), ARRAY_A, ARRAY_N.
288  * @return array|bool False on failure and the type will be determined by $output parameter.
289  */
290 function get_children($args = '', $output = OBJECT) {
291         $kids = array();
292         if ( empty( $args ) ) {
293                 if ( isset( $GLOBALS['post'] ) ) {
294                         $args = array('post_parent' => (int) $GLOBALS['post']->post_parent );
295                 } else {
296                         return $kids;
297                 }
298         } elseif ( is_object( $args ) ) {
299                 $args = array('post_parent' => (int) $args->post_parent );
300         } elseif ( is_numeric( $args ) ) {
301                 $args = array('post_parent' => (int) $args);
302         }
303
304         $defaults = array(
305                 'numberposts' => -1, 'post_type' => 'any',
306                 'post_status' => 'any', 'post_parent' => 0,
307         );
308
309         $r = wp_parse_args( $args, $defaults );
310
311         $children = get_posts( $r );
312
313         if ( !$children )
314                 return $kids;
315
316         update_post_cache($children);
317
318         foreach ( $children as $key => $child )
319                 $kids[$child->ID] = $children[$key];
320
321         if ( $output == OBJECT ) {
322                 return $kids;
323         } elseif ( $output == ARRAY_A ) {
324                 foreach ( (array) $kids as $kid )
325                         $weeuns[$kid->ID] = get_object_vars($kids[$kid->ID]);
326                 return $weeuns;
327         } elseif ( $output == ARRAY_N ) {
328                 foreach ( (array) $kids as $kid )
329                         $babes[$kid->ID] = array_values(get_object_vars($kids[$kid->ID]));
330                 return $babes;
331         } else {
332                 return $kids;
333         }
334 }
335
336 /**
337  * Get extended entry info (<!--more-->).
338  *
339  * There should not be any space after the second dash and before the word
340  * 'more'. There can be text or space(s) after the word 'more', but won't be
341  * referenced.
342  *
343  * The returned array has 'main', 'extended', and 'more_text' keys. Main has the text before
344  * the <code><!--more--></code>. The 'extended' key has the content after the
345  * <code><!--more--></code> comment. The 'more_text' key has the custom "Read More" text.
346  *
347  * @since 1.0.0
348  *
349  * @param string $post Post content.
350  * @return array Post before ('main'), after ('extended'), and custom readmore ('more_text').
351  */
352 function get_extended($post) {
353         //Match the new style more links
354         if ( preg_match('/<!--more(.*?)?-->/', $post, $matches) ) {
355                 list($main, $extended) = explode($matches[0], $post, 2);
356                 $more_text = $matches[1];
357         } else {
358                 $main = $post;
359                 $extended = '';
360                 $more_text = '';
361         }
362
363         // Strip leading and trailing whitespace
364         $main = preg_replace('/^[\s]*(.*)[\s]*$/', '\\1', $main);
365         $extended = preg_replace('/^[\s]*(.*)[\s]*$/', '\\1', $extended);
366         $more_text = preg_replace('/^[\s]*(.*)[\s]*$/', '\\1', $more_text);
367
368         return array( 'main' => $main, 'extended' => $extended, 'more_text' => $more_text );
369 }
370
371 /**
372  * Retrieves post data given a post ID or post object.
373  *
374  * See {@link sanitize_post()} for optional $filter values. Also, the parameter
375  * $post, must be given as a variable, since it is passed by reference.
376  *
377  * @since 1.5.1
378  * @uses $wpdb
379  * @link http://codex.wordpress.org/Function_Reference/get_post
380  *
381  * @param int|object $post Post ID or post object. Optional, default is the current post from the loop.
382  * @param string $output Optional, default is Object. Either OBJECT, ARRAY_A, or ARRAY_N.
383  * @param string $filter Optional, default is raw.
384  * @return WP_Post|null WP_Post on success or null on failure
385  */
386 function get_post( $post = null, $output = OBJECT, $filter = 'raw' ) {
387         if ( empty( $post ) && isset( $GLOBALS['post'] ) )
388                 $post = $GLOBALS['post'];
389
390         if ( is_a( $post, 'WP_Post' ) ) {
391                 $_post = $post;
392         } elseif ( is_object( $post ) ) {
393                 if ( empty( $post->filter ) ) {
394                         $_post = sanitize_post( $post, 'raw' );
395                         $_post = new WP_Post( $_post );
396                 } elseif ( 'raw' == $post->filter ) {
397                         $_post = new WP_Post( $post );
398                 } else {
399                         $_post = WP_Post::get_instance( $post->ID );
400                 }
401         } else {
402                 $_post = WP_Post::get_instance( $post );
403         }
404
405         if ( ! $_post )
406                 return null;
407
408         $_post = $_post->filter( $filter );
409
410         if ( $output == ARRAY_A )
411                 return $_post->to_array();
412         elseif ( $output == ARRAY_N )
413                 return array_values( $_post->to_array() );
414
415         return $_post;
416 }
417
418 /**
419  * WordPress Post class.
420  *
421  * @since 3.5.0
422  *
423  */
424 final class WP_Post {
425
426         /**
427          *
428          * @var int
429          */
430         public $ID;
431
432         /**
433          *
434          * @var int
435          */
436         public $post_author = 0;
437
438         /**
439          *
440          * @var string
441          */
442         public $post_date = '0000-00-00 00:00:00';
443
444         /**
445          *
446          * @var string
447          */
448         public $post_date_gmt = '0000-00-00 00:00:00';
449
450         /**
451          *
452          * @var string
453          */
454         public $post_content = '';
455
456         /**
457          *
458          * @var string
459          */
460         public $post_title = '';
461
462         /**
463          *
464          * @var string
465          */
466         public $post_excerpt = '';
467
468         /**
469          *
470          * @var string
471          */
472         public $post_status = 'publish';
473
474         /**
475          *
476          * @var string
477          */
478         public $comment_status = 'open';
479
480         /**
481          *
482          * @var string
483          */
484         public $ping_status = 'open';
485
486         /**
487          *
488          * @var string
489          */
490         public $post_password = '';
491
492         /**
493          *
494          * @var string
495          */
496         public $post_name = '';
497
498         /**
499          *
500          * @var string
501          */
502         public $to_ping = '';
503
504         /**
505          *
506          * @var string
507          */
508         public $pinged = '';
509
510         /**
511          *
512          * @var string
513          */
514         public $post_modified = '0000-00-00 00:00:00';
515
516         /**
517          *
518          * @var string
519          */
520         public $post_modified_gmt = '0000-00-00 00:00:00';
521
522         /**
523          *
524          * @var string
525          */
526         public $post_content_filtered = '';
527
528         /**
529          *
530          * @var int
531          */
532         public $post_parent = 0;
533
534         /**
535          *
536          * @var string
537          */
538         public $guid = '';
539
540         /**
541          *
542          * @var int
543          */
544         public $menu_order = 0;
545
546         /**
547          *
548          * @var string
549          */
550         public $post_type = 'post';
551
552         /**
553          *
554          * @var string
555          */
556         public $post_mime_type = '';
557
558         /**
559          *
560          * @var int
561          */
562         public $comment_count = 0;
563
564         /**
565          *
566          * @var string
567          */
568         public $filter;
569
570         public static function get_instance( $post_id ) {
571                 global $wpdb;
572
573                 $post_id = (int) $post_id;
574                 if ( ! $post_id )
575                         return false;
576
577                 $_post = wp_cache_get( $post_id, 'posts' );
578
579                 if ( ! $_post ) {
580                         $_post = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE ID = %d LIMIT 1", $post_id ) );
581
582                         if ( ! $_post )
583                                 return false;
584
585                         $_post = sanitize_post( $_post, 'raw' );
586                         wp_cache_add( $_post->ID, $_post, 'posts' );
587                 } elseif ( empty( $_post->filter ) ) {
588                         $_post = sanitize_post( $_post, 'raw' );
589                 }
590
591                 return new WP_Post( $_post );
592         }
593
594         public function __construct( $post ) {
595                 foreach ( get_object_vars( $post ) as $key => $value )
596                         $this->$key = $value;
597         }
598
599         public function __isset( $key ) {
600                 if ( 'ancestors' == $key )
601                         return true;
602
603                 if ( 'page_template' == $key )
604                         return ( 'page' == $this->post_type );
605
606                 if ( 'post_category' == $key )
607                    return true;
608
609                 if ( 'tags_input' == $key )
610                    return true;
611
612                 return metadata_exists( 'post', $this->ID, $key );
613         }
614
615         public function __get( $key ) {
616                 if ( 'page_template' == $key && $this->__isset( $key ) ) {
617                         return get_post_meta( $this->ID, '_wp_page_template', true );
618                 }
619
620                 if ( 'post_category' == $key ) {
621                         if ( is_object_in_taxonomy( $this->post_type, 'category' ) )
622                                 $terms = get_the_terms( $this, 'category' );
623
624                         if ( empty( $terms ) )
625                                 return array();
626
627                         return wp_list_pluck( $terms, 'term_id' );
628                 }
629
630                 if ( 'tags_input' == $key ) {
631                         if ( is_object_in_taxonomy( $this->post_type, 'post_tag' ) )
632                                 $terms = get_the_terms( $this, 'post_tag' );
633
634                         if ( empty( $terms ) )
635                                 return array();
636
637                         return wp_list_pluck( $terms, 'name' );
638                 }
639
640                 // Rest of the values need filtering
641
642                 if ( 'ancestors' == $key )
643                         $value = get_post_ancestors( $this );
644                 else
645                         $value = get_post_meta( $this->ID, $key, true );
646
647                 if ( $this->filter )
648                         $value = sanitize_post_field( $key, $value, $this->ID, $this->filter );
649
650                 return $value;
651         }
652
653         public function filter( $filter ) {
654                 if ( $this->filter == $filter )
655                         return $this;
656
657                 if ( $filter == 'raw' )
658                         return self::get_instance( $this->ID );
659
660                 return sanitize_post( $this, $filter );
661         }
662
663         public function to_array() {
664                 $post = get_object_vars( $this );
665
666                 foreach ( array( 'ancestors', 'page_template', 'post_category', 'tags_input' ) as $key ) {
667                         if ( $this->__isset( $key ) )
668                                 $post[ $key ] = $this->__get( $key );
669                 }
670
671                 return $post;
672         }
673 }
674
675 /**
676  * Retrieve ancestors of a post.
677  *
678  * @since 2.5.0
679  *
680  * @param int|object $post Post ID or post object
681  * @return array Ancestor IDs or empty array if none are found.
682  */
683 function get_post_ancestors( $post ) {
684         if ( ! $post )
685                 return array();
686
687         $post = get_post( $post );
688
689         if ( empty( $post->post_parent ) || $post->post_parent == $post->ID )
690                 return array();
691
692         $ancestors = array();
693
694         $id = $ancestors[] = $post->post_parent;
695
696         while ( $ancestor = get_post( $id ) ) {
697                 // Loop detection: If the ancestor has been seen before, break.
698                 if ( empty( $ancestor->post_parent ) || ( $ancestor->post_parent == $post->ID ) || in_array( $ancestor->post_parent, $ancestors ) )
699                         break;
700
701                 $id = $ancestors[] = $ancestor->post_parent;
702         }
703
704         return $ancestors;
705 }
706
707 /**
708  * Retrieve data from a post field based on Post ID.
709  *
710  * Examples of the post field will be, 'post_type', 'post_status', 'post_content',
711  * etc and based off of the post object property or key names.
712  *
713  * The context values are based off of the taxonomy filter functions and
714  * supported values are found within those functions.
715  *
716  * @since 2.3.0
717  * @uses sanitize_post_field() See for possible $context values.
718  *
719  * @param string $field Post field name
720  * @param id $post Post ID
721  * @param string $context Optional. How to filter the field. Default is display.
722  * @return bool|string False on failure or returns the value in post field
723  */
724 function get_post_field( $field, $post, $context = 'display' ) {
725         $post = get_post( $post );
726
727         if ( !$post )
728                 return '';
729
730         if ( !isset($post->$field) )
731                 return '';
732
733         return sanitize_post_field($field, $post->$field, $post->ID, $context);
734 }
735
736 /**
737  * Retrieve the mime type of an attachment based on the ID.
738  *
739  * This function can be used with any post type, but it makes more sense with
740  * attachments.
741  *
742  * @since 2.0.0
743  *
744  * @param int $ID Optional. Post ID.
745  * @return bool|string False on failure or returns the mime type
746  */
747 function get_post_mime_type($ID = '') {
748         $post = get_post($ID);
749
750         if ( is_object($post) )
751                 return $post->post_mime_type;
752
753         return false;
754 }
755
756 /**
757  * Retrieve the format slug for a post
758  *
759  * @since 3.1.0
760  *
761  * @param int|object $post A post
762  *
763  * @return mixed The format if successful. False if no format is set. WP_Error if errors.
764  */
765 function get_post_format( $post = null ) {
766         $post = get_post($post);
767
768         if ( ! post_type_supports( $post->post_type, 'post-formats' ) )
769                 return false;
770
771         $_format = get_the_terms( $post->ID, 'post_format' );
772
773         if ( empty( $_format ) )
774                 return false;
775
776         $format = array_shift( $_format );
777
778         return ( str_replace('post-format-', '', $format->slug ) );
779 }
780
781 /**
782  * Check if a post has a particular format
783  *
784  * @since 3.1.0
785  * @uses has_term()
786  *
787  * @param string $format The format to check for
788  * @param object|id $post The post to check. If not supplied, defaults to the current post if used in the loop.
789  * @return bool True if the post has the format, false otherwise.
790  */
791 function has_post_format( $format, $post = null ) {
792         return has_term('post-format-' . sanitize_key($format), 'post_format', $post);
793 }
794
795 /**
796  * Assign a format to a post
797  *
798  * @since 3.1.0
799  *
800  * @param int|object $post The post for which to assign a format
801  * @param string $format  A format to assign. Use an empty string or array to remove all formats from the post.
802  * @return mixed WP_Error on error. Array of affected term IDs on success.
803  */
804 function set_post_format( $post, $format ) {
805         $post = get_post($post);
806
807         if ( empty($post) )
808                 return new WP_Error('invalid_post', __('Invalid post'));
809
810         if ( !empty($format) ) {
811                 $format = sanitize_key($format);
812                 if ( 'standard' == $format || !in_array( $format, array_keys( get_post_format_slugs() ) ) )
813                         $format = '';
814                 else
815                         $format = 'post-format-' . $format;
816         }
817
818         return wp_set_post_terms($post->ID, $format, 'post_format');
819 }
820
821 /**
822  * Retrieve the post status based on the Post ID.
823  *
824  * If the post ID is of an attachment, then the parent post status will be given
825  * instead.
826  *
827  * @since 2.0.0
828  *
829  * @param int $ID Post ID
830  * @return string|bool Post status or false on failure.
831  */
832 function get_post_status($ID = '') {
833         $post = get_post($ID);
834
835         if ( !is_object($post) )
836                 return false;
837
838         if ( 'attachment' == $post->post_type ) {
839                 if ( 'private' == $post->post_status )
840                         return 'private';
841
842                 // Unattached attachments are assumed to be published
843                 if ( ( 'inherit' == $post->post_status ) && ( 0 == $post->post_parent) )
844                         return 'publish';
845
846                 // Inherit status from the parent
847                 if ( $post->post_parent && ( $post->ID != $post->post_parent ) )
848                         return get_post_status($post->post_parent);
849         }
850
851         return $post->post_status;
852 }
853
854 /**
855  * Retrieve all of the WordPress supported post statuses.
856  *
857  * Posts have a limited set of valid status values, this provides the
858  * post_status values and descriptions.
859  *
860  * @since 2.5.0
861  *
862  * @return array List of post statuses.
863  */
864 function get_post_statuses( ) {
865         $status = array(
866                 'draft'                 => __('Draft'),
867                 'pending'               => __('Pending Review'),
868                 'private'               => __('Private'),
869                 'publish'               => __('Published')
870         );
871
872         return $status;
873 }
874
875 /**
876  * Retrieve all of the WordPress support page statuses.
877  *
878  * Pages have a limited set of valid status values, this provides the
879  * post_status values and descriptions.
880  *
881  * @since 2.5.0
882  *
883  * @return array List of page statuses.
884  */
885 function get_page_statuses( ) {
886         $status = array(
887                 'draft'                 => __('Draft'),
888                 'private'               => __('Private'),
889                 'publish'               => __('Published')
890         );
891
892         return $status;
893 }
894
895 /**
896  * Register a post status. Do not use before init.
897  *
898  * A simple function for creating or modifying a post status based on the
899  * parameters given. The function will accept an array (second optional
900  * parameter), along with a string for the post status name.
901  *
902  *
903  * Optional $args contents:
904  *
905  * label - A descriptive name for the post status marked for translation. Defaults to $post_status.
906  * public - Whether posts of this status should be shown in the front end of the site. Defaults to true.
907  * exclude_from_search - Whether to exclude posts with this post status from search results. Defaults to false.
908  * show_in_admin_all_list - Whether to include posts in the edit listing for their post type
909  * show_in_admin_status_list - Show in the list of statuses with post counts at the top of the edit
910  *                             listings, e.g. All (12) | Published (9) | My Custom Status (2) ...
911  *
912  * Arguments prefixed with an _underscore shouldn't be used by plugins and themes.
913  *
914  * @package WordPress
915  * @subpackage Post
916  * @since 3.0.0
917  * @uses $wp_post_statuses Inserts new post status object into the list
918  *
919  * @param string $post_status Name of the post status.
920  * @param array|string $args See above description.
921  */
922 function register_post_status($post_status, $args = array()) {
923         global $wp_post_statuses;
924
925         if (!is_array($wp_post_statuses))
926                 $wp_post_statuses = array();
927
928         // Args prefixed with an underscore are reserved for internal use.
929         $defaults = array(
930                 'label' => false,
931                 'label_count' => false,
932                 'exclude_from_search' => null,
933                 '_builtin' => false,
934                 'public' => null,
935                 'internal' => null,
936                 'protected' => null,
937                 'private' => null,
938                 'publicly_queryable' => null,
939                 'show_in_admin_status_list' => null,
940                 'show_in_admin_all_list' => null,
941         );
942         $args = wp_parse_args($args, $defaults);
943         $args = (object) $args;
944
945         $post_status = sanitize_key($post_status);
946         $args->name = $post_status;
947
948         if ( null === $args->public && null === $args->internal && null === $args->protected && null === $args->private )
949                 $args->internal = true;
950
951         if ( null === $args->public  )
952                 $args->public = false;
953
954         if ( null === $args->private  )
955                 $args->private = false;
956
957         if ( null === $args->protected  )
958                 $args->protected = false;
959
960         if ( null === $args->internal  )
961                 $args->internal = false;
962
963         if ( null === $args->publicly_queryable )
964                 $args->publicly_queryable = $args->public;
965
966         if ( null === $args->exclude_from_search )
967                 $args->exclude_from_search = $args->internal;
968
969         if ( null === $args->show_in_admin_all_list )
970                 $args->show_in_admin_all_list = !$args->internal;
971
972         if ( null === $args->show_in_admin_status_list )
973                 $args->show_in_admin_status_list = !$args->internal;
974
975         if ( false === $args->label )
976                 $args->label = $post_status;
977
978         if ( false === $args->label_count )
979                 $args->label_count = array( $args->label, $args->label );
980
981         $wp_post_statuses[$post_status] = $args;
982
983         return $args;
984 }
985
986 /**
987  * Retrieve a post status object by name
988  *
989  * @package WordPress
990  * @subpackage Post
991  * @since 3.0.0
992  * @uses $wp_post_statuses
993  * @see register_post_status
994  * @see get_post_statuses
995  *
996  * @param string $post_status The name of a registered post status
997  * @return object A post status object
998  */
999 function get_post_status_object( $post_status ) {
1000         global $wp_post_statuses;
1001
1002         if ( empty($wp_post_statuses[$post_status]) )
1003                 return null;
1004
1005         return $wp_post_statuses[$post_status];
1006 }
1007
1008 /**
1009  * Get a list of all registered post status objects.
1010  *
1011  * @package WordPress
1012  * @subpackage Post
1013  * @since 3.0.0
1014  * @uses $wp_post_statuses
1015  * @see register_post_status
1016  * @see get_post_status_object
1017  *
1018  * @param array|string $args An array of key => value arguments to match against the post status objects.
1019  * @param string $output The type of output to return, either post status 'names' or 'objects'. 'names' is the default.
1020  * @param string $operator The logical operation to perform. 'or' means only one element
1021  *  from the array needs to match; 'and' means all elements must match. The default is 'and'.
1022  * @return array A list of post status names or objects
1023  */
1024 function get_post_stati( $args = array(), $output = 'names', $operator = 'and' ) {
1025         global $wp_post_statuses;
1026
1027         $field = ('names' == $output) ? 'name' : false;
1028
1029         return wp_filter_object_list($wp_post_statuses, $args, $operator, $field);
1030 }
1031
1032 /**
1033  * Whether the post type is hierarchical.
1034  *
1035  * A false return value might also mean that the post type does not exist.
1036  *
1037  * @since 3.0.0
1038  * @see get_post_type_object
1039  *
1040  * @param string $post_type Post type name
1041  * @return bool Whether post type is hierarchical.
1042  */
1043 function is_post_type_hierarchical( $post_type ) {
1044         if ( ! post_type_exists( $post_type ) )
1045                 return false;
1046
1047         $post_type = get_post_type_object( $post_type );
1048         return $post_type->hierarchical;
1049 }
1050
1051 /**
1052  * Checks if a post type is registered.
1053  *
1054  * @since 3.0.0
1055  * @uses get_post_type_object()
1056  *
1057  * @param string $post_type Post type name
1058  * @return bool Whether post type is registered.
1059  */
1060 function post_type_exists( $post_type ) {
1061         return (bool) get_post_type_object( $post_type );
1062 }
1063
1064 /**
1065  * Retrieve the post type of the current post or of a given post.
1066  *
1067  * @since 2.1.0
1068  *
1069  * @uses $post The Loop current post global
1070  *
1071  * @param mixed $post Optional. Post object or post ID.
1072  * @return bool|string post type or false on failure.
1073  */
1074 function get_post_type( $post = null ) {
1075         if ( $post = get_post( $post ) )
1076                 return $post->post_type;
1077
1078         return false;
1079 }
1080
1081 /**
1082  * Retrieve a post type object by name
1083  *
1084  * @package WordPress
1085  * @subpackage Post
1086  * @since 3.0.0
1087  * @uses $wp_post_types
1088  * @see register_post_type
1089  * @see get_post_types
1090  *
1091  * @param string $post_type The name of a registered post type
1092  * @return object A post type object
1093  */
1094 function get_post_type_object( $post_type ) {
1095         global $wp_post_types;
1096
1097         if ( empty($wp_post_types[$post_type]) )
1098                 return null;
1099
1100         return $wp_post_types[$post_type];
1101 }
1102
1103 /**
1104  * Get a list of all registered post type objects.
1105  *
1106  * @package WordPress
1107  * @subpackage Post
1108  * @since 2.9.0
1109  * @uses $wp_post_types
1110  * @see register_post_type
1111  *
1112  * @param array|string $args An array of key => value arguments to match against the post type objects.
1113  * @param string $output The type of output to return, either post type 'names' or 'objects'. 'names' is the default.
1114  * @param string $operator The logical operation to perform. 'or' means only one element
1115  *  from the array needs to match; 'and' means all elements must match. The default is 'and'.
1116  * @return array A list of post type names or objects
1117  */
1118 function get_post_types( $args = array(), $output = 'names', $operator = 'and' ) {
1119         global $wp_post_types;
1120
1121         $field = ('names' == $output) ? 'name' : false;
1122
1123         return wp_filter_object_list($wp_post_types, $args, $operator, $field);
1124 }
1125
1126 /**
1127  * Register a post type. Do not use before init.
1128  *
1129  * A function for creating or modifying a post type based on the
1130  * parameters given. The function will accept an array (second optional
1131  * parameter), along with a string for the post type name.
1132  *
1133  * Optional $args contents:
1134  *
1135  * - label - Name of the post type shown in the menu. Usually plural. If not set, labels['name'] will be used.
1136  * - labels - An array of labels for this post type.
1137  *     * If not set, post labels are inherited for non-hierarchical types and page labels for hierarchical ones.
1138  *     * You can see accepted values in {@link get_post_type_labels()}.
1139  * - description - A short descriptive summary of what the post type is. Defaults to blank.
1140  * - public - Whether a post type is intended for use publicly either via the admin interface or by front-end users.
1141  *     * Defaults to false.
1142  *     * While the default settings of exclude_from_search, publicly_queryable, show_ui, and show_in_nav_menus are
1143  *       inherited from public, each does not rely on this relationship and controls a very specific intention.
1144  * - exclude_from_search - Whether to exclude posts with this post type from front end search results.
1145  *     * If not set, the the opposite of public's current value is used.
1146  * - publicly_queryable - Whether queries can be performed on the front end for the post type as part of parse_request().
1147  *     * ?post_type={post_type_key}
1148  *     * ?{post_type_key}={single_post_slug}
1149  *     * ?{post_type_query_var}={single_post_slug}
1150  *     * If not set, the default is inherited from public.
1151  * - show_ui - Whether to generate a default UI for managing this post type in the admin.
1152  *     * If not set, the default is inherited from public.
1153  * - show_in_nav_menus - Makes this post type available for selection in navigation menus.
1154  *     * If not set, the default is inherited from public.
1155  * - show_in_menu - Where to show the post type in the admin menu.
1156  *     * If true, the post type is shown in its own top level menu.
1157  *     * If false, no menu is shown
1158  *     * If a string of an existing top level menu (eg. 'tools.php' or 'edit.php?post_type=page'), the post type will
1159  *       be placed as a sub menu of that.
1160  *     * show_ui must be true.
1161  *     * If not set, the default is inherited from show_ui
1162  * - show_in_admin_bar - Makes this post type available via the admin bar.
1163  *     * If not set, the default is inherited from show_in_menu
1164  * - menu_position - The position in the menu order the post type should appear.
1165  *     * show_in_menu must be true
1166  *     * Defaults to null, which places it at the bottom of its area.
1167  * - menu_icon - The url to the icon to be used for this menu. Defaults to use the posts icon.
1168  * - capability_type - The string to use to build the read, edit, and delete capabilities. Defaults to 'post'.
1169  *     * May be passed as an array to allow for alternative plurals when using this argument as a base to construct the
1170  *       capabilities, e.g. array('story', 'stories').
1171  * - capabilities - Array of capabilities for this post type.
1172  *     * By default the capability_type is used as a base to construct capabilities.
1173  *     * You can see accepted values in {@link get_post_type_capabilities()}.
1174  * - map_meta_cap - Whether to use the internal default meta capability handling. Defaults to false.
1175  * - hierarchical - Whether the post type is hierarchical (e.g. page). Defaults to false.
1176  * - supports - An alias for calling add_post_type_support() directly. Defaults to title and editor.
1177  *     * See {@link add_post_type_support()} for documentation.
1178  * - register_meta_box_cb - Provide a callback function that will be called when setting up the
1179  *     meta boxes for the edit form. Do remove_meta_box() and add_meta_box() calls in the callback.
1180  * - taxonomies - An array of taxonomy identifiers that will be registered for the post type.
1181  *     * Default is no taxonomies.
1182  *     * Taxonomies can be registered later with register_taxonomy() or register_taxonomy_for_object_type().
1183  * - has_archive - True to enable post type archives. Default is false.
1184  *     * Will generate the proper rewrite rules if rewrite is enabled.
1185  * - rewrite - Triggers the handling of rewrites for this post type. Defaults to true, using $post_type as slug.
1186  *     * To prevent rewrite, set to false.
1187  *     * To specify rewrite rules, an array can be passed with any of these keys
1188  *         * 'slug' => string Customize the permastruct slug. Defaults to $post_type key
1189  *         * 'with_front' => bool Should the permastruct be prepended with WP_Rewrite::$front. Defaults to true.
1190  *         * 'feeds' => bool Should a feed permastruct be built for this post type. Inherits default from has_archive.
1191  *         * 'pages' => bool Should the permastruct provide for pagination. Defaults to true.
1192  *         * 'ep_mask' => const Assign an endpoint mask.
1193  *             * If not specified and permalink_epmask is set, inherits from permalink_epmask.
1194  *             * If not specified and permalink_epmask is not set, defaults to EP_PERMALINK
1195  * - query_var - Sets the query_var key for this post type. Defaults to $post_type key
1196  *     * If false, a post type cannot be loaded at ?{query_var}={post_slug}
1197  *     * If specified as a string, the query ?{query_var_string}={post_slug} will be valid.
1198  * - can_export - Allows this post type to be exported. Defaults to true.
1199  * - delete_with_user - Whether to delete posts of this type when deleting a user.
1200  *     * If true, posts of this type belonging to the user will be moved to trash when then user is deleted.
1201  *     * If false, posts of this type belonging to the user will *not* be trashed or deleted.
1202  *     * If not set (the default), posts are trashed if post_type_supports('author'). Otherwise posts are not trashed or deleted.
1203  * - _builtin - true if this post type is a native or "built-in" post_type. THIS IS FOR INTERNAL USE ONLY!
1204  * - _edit_link - URL segement to use for edit link of this post type. THIS IS FOR INTERNAL USE ONLY!
1205  *
1206  * @since 2.9.0
1207  * @uses $wp_post_types Inserts new post type object into the list
1208  *
1209  * @param string $post_type Post type key, must not exceed 20 characters
1210  * @param array|string $args See optional args description above.
1211  * @return object|WP_Error the registered post type object, or an error object
1212  */
1213 function register_post_type( $post_type, $args = array() ) {
1214         global $wp_post_types, $wp_rewrite, $wp;
1215
1216         if ( !is_array($wp_post_types) )
1217                 $wp_post_types = array();
1218
1219         // Args prefixed with an underscore are reserved for internal use.
1220         $defaults = array(
1221                 'labels' => array(), 'description' => '', 'publicly_queryable' => null, 'exclude_from_search' => null,
1222                 'capability_type' => 'post', 'capabilities' => array(), 'map_meta_cap' => null,
1223                 '_builtin' => false, '_edit_link' => 'post.php?post=%d', 'hierarchical' => false,
1224                 'public' => false, 'rewrite' => true, 'has_archive' => false, 'query_var' => true,
1225                 'supports' => array(), 'register_meta_box_cb' => null,
1226                 'taxonomies' => array(), 'show_ui' => null, 'menu_position' => null, 'menu_icon' => null,
1227                 'can_export' => true,
1228                 'show_in_nav_menus' => null, 'show_in_menu' => null, 'show_in_admin_bar' => null,
1229                 'delete_with_user' => null,
1230         );
1231         $args = wp_parse_args($args, $defaults);
1232         $args = (object) $args;
1233
1234         $post_type = sanitize_key($post_type);
1235         $args->name = $post_type;
1236
1237         if ( strlen( $post_type ) > 20 )
1238                         return new WP_Error( 'post_type_too_long', __( 'Post types cannot exceed 20 characters in length' ) );
1239
1240         // If not set, default to the setting for public.
1241         if ( null === $args->publicly_queryable )
1242                 $args->publicly_queryable = $args->public;
1243
1244         // If not set, default to the setting for public.
1245         if ( null === $args->show_ui )
1246                 $args->show_ui = $args->public;
1247
1248         // If not set, default to the setting for show_ui.
1249         if ( null === $args->show_in_menu || ! $args->show_ui )
1250                 $args->show_in_menu = $args->show_ui;
1251
1252         // If not set, default to the whether the full UI is shown.
1253         if ( null === $args->show_in_admin_bar )
1254                 $args->show_in_admin_bar = true === $args->show_in_menu;
1255
1256         // Whether to show this type in nav-menus.php. Defaults to the setting for public.
1257         if ( null === $args->show_in_nav_menus )
1258                 $args->show_in_nav_menus = $args->public;
1259
1260         // If not set, default to true if not public, false if public.
1261         if ( null === $args->exclude_from_search )
1262                 $args->exclude_from_search = !$args->public;
1263
1264         // Back compat with quirky handling in version 3.0. #14122
1265         if ( empty( $args->capabilities ) && null === $args->map_meta_cap && in_array( $args->capability_type, array( 'post', 'page' ) ) )
1266                 $args->map_meta_cap = true;
1267
1268         if ( null === $args->map_meta_cap )
1269                 $args->map_meta_cap = false;
1270
1271         $args->cap = get_post_type_capabilities( $args );
1272         unset($args->capabilities);
1273
1274         if ( is_array( $args->capability_type ) )
1275                 $args->capability_type = $args->capability_type[0];
1276
1277         if ( ! empty($args->supports) ) {
1278                 add_post_type_support($post_type, $args->supports);
1279                 unset($args->supports);
1280         } elseif ( false !== $args->supports ) {
1281                 // Add default features
1282                 add_post_type_support($post_type, array('title', 'editor'));
1283         }
1284
1285         if ( false !== $args->query_var && !empty($wp) ) {
1286                 if ( true === $args->query_var )
1287                         $args->query_var = $post_type;
1288                 else
1289                         $args->query_var = sanitize_title_with_dashes($args->query_var);
1290                 $wp->add_query_var($args->query_var);
1291         }
1292
1293         if ( false !== $args->rewrite && ( is_admin() || '' != get_option('permalink_structure') ) ) {
1294                 if ( ! is_array( $args->rewrite ) )
1295                         $args->rewrite = array();
1296                 if ( empty( $args->rewrite['slug'] ) )
1297                         $args->rewrite['slug'] = $post_type;
1298                 if ( ! isset( $args->rewrite['with_front'] ) )
1299                         $args->rewrite['with_front'] = true;
1300                 if ( ! isset( $args->rewrite['pages'] ) )
1301                         $args->rewrite['pages'] = true;
1302                 if ( ! isset( $args->rewrite['feeds'] ) || ! $args->has_archive )
1303                         $args->rewrite['feeds'] = (bool) $args->has_archive;
1304                 if ( ! isset( $args->rewrite['ep_mask'] ) ) {
1305                         if ( isset( $args->permalink_epmask ) )
1306                                 $args->rewrite['ep_mask'] = $args->permalink_epmask;
1307                         else
1308                                 $args->rewrite['ep_mask'] = EP_PERMALINK;
1309                 }
1310
1311                 if ( $args->hierarchical )
1312                         add_rewrite_tag("%$post_type%", '(.+?)', $args->query_var ? "{$args->query_var}=" : "post_type=$post_type&name=");
1313                 else
1314                         add_rewrite_tag("%$post_type%", '([^/]+)', $args->query_var ? "{$args->query_var}=" : "post_type=$post_type&name=");
1315
1316                 if ( $args->has_archive ) {
1317                         $archive_slug = $args->has_archive === true ? $args->rewrite['slug'] : $args->has_archive;
1318                         if ( $args->rewrite['with_front'] )
1319                                 $archive_slug = substr( $wp_rewrite->front, 1 ) . $archive_slug;
1320                         else
1321                                 $archive_slug = $wp_rewrite->root . $archive_slug;
1322
1323                         add_rewrite_rule( "{$archive_slug}/?$", "index.php?post_type=$post_type", 'top' );
1324                         if ( $args->rewrite['feeds'] && $wp_rewrite->feeds ) {
1325                                 $feeds = '(' . trim( implode( '|', $wp_rewrite->feeds ) ) . ')';
1326                                 add_rewrite_rule( "{$archive_slug}/feed/$feeds/?$", "index.php?post_type=$post_type" . '&feed=$matches[1]', 'top' );
1327                                 add_rewrite_rule( "{$archive_slug}/$feeds/?$", "index.php?post_type=$post_type" . '&feed=$matches[1]', 'top' );
1328                         }
1329                         if ( $args->rewrite['pages'] )
1330                                 add_rewrite_rule( "{$archive_slug}/{$wp_rewrite->pagination_base}/([0-9]{1,})/?$", "index.php?post_type=$post_type" . '&paged=$matches[1]', 'top' );
1331                 }
1332
1333                 add_permastruct( $post_type, "{$args->rewrite['slug']}/%$post_type%", $args->rewrite );
1334         }
1335
1336         if ( $args->register_meta_box_cb )
1337                 add_action('add_meta_boxes_' . $post_type, $args->register_meta_box_cb, 10, 1);
1338
1339         $args->labels = get_post_type_labels( $args );
1340         $args->label = $args->labels->name;
1341
1342         $wp_post_types[$post_type] = $args;
1343
1344         add_action( 'future_' . $post_type, '_future_post_hook', 5, 2 );
1345
1346         foreach ( $args->taxonomies as $taxonomy ) {
1347                 register_taxonomy_for_object_type( $taxonomy, $post_type );
1348         }
1349
1350         do_action( 'registered_post_type', $post_type, $args );
1351
1352         return $args;
1353 }
1354
1355 /**
1356  * Builds an object with all post type capabilities out of a post type object
1357  *
1358  * Post type capabilities use the 'capability_type' argument as a base, if the
1359  * capability is not set in the 'capabilities' argument array or if the
1360  * 'capabilities' argument is not supplied.
1361  *
1362  * The capability_type argument can optionally be registered as an array, with
1363  * the first value being singular and the second plural, e.g. array('story, 'stories')
1364  * Otherwise, an 's' will be added to the value for the plural form. After
1365  * registration, capability_type will always be a string of the singular value.
1366  *
1367  * By default, seven keys are accepted as part of the capabilities array:
1368  *
1369  * - edit_post, read_post, and delete_post are meta capabilities, which are then
1370  *   generally mapped to corresponding primitive capabilities depending on the
1371  *   context, which would be the post being edited/read/deleted and the user or
1372  *   role being checked. Thus these capabilities would generally not be granted
1373  *   directly to users or roles.
1374  *
1375  * - edit_posts - Controls whether objects of this post type can be edited.
1376  * - edit_others_posts - Controls whether objects of this type owned by other users
1377  *   can be edited. If the post type does not support an author, then this will
1378  *   behave like edit_posts.
1379  * - publish_posts - Controls publishing objects of this post type.
1380  * - read_private_posts - Controls whether private objects can be read.
1381  *
1382  * These four primitive capabilities are checked in core in various locations.
1383  * There are also seven other primitive capabilities which are not referenced
1384  * directly in core, except in map_meta_cap(), which takes the three aforementioned
1385  * meta capabilities and translates them into one or more primitive capabilities
1386  * that must then be checked against the user or role, depending on the context.
1387  *
1388  * - read - Controls whether objects of this post type can be read.
1389  * - delete_posts - Controls whether objects of this post type can be deleted.
1390  * - delete_private_posts - Controls whether private objects can be deleted.
1391  * - delete_published_posts - Controls whether published objects can be deleted.
1392  * - delete_others_posts - Controls whether objects owned by other users can be
1393  *   can be deleted. If the post type does not support an author, then this will
1394  *   behave like delete_posts.
1395  * - edit_private_posts - Controls whether private objects can be edited.
1396  * - edit_published_posts - Controls whether published objects can be edited.
1397  *
1398  * These additional capabilities are only used in map_meta_cap(). Thus, they are
1399  * only assigned by default if the post type is registered with the 'map_meta_cap'
1400  * argument set to true (default is false).
1401  *
1402  * @see map_meta_cap()
1403  * @since 3.0.0
1404  *
1405  * @param object $args Post type registration arguments
1406  * @return object object with all the capabilities as member variables
1407  */
1408 function get_post_type_capabilities( $args ) {
1409         if ( ! is_array( $args->capability_type ) )
1410                 $args->capability_type = array( $args->capability_type, $args->capability_type . 's' );
1411
1412         // Singular base for meta capabilities, plural base for primitive capabilities.
1413         list( $singular_base, $plural_base ) = $args->capability_type;
1414
1415         $default_capabilities = array(
1416                 // Meta capabilities
1417                 'edit_post'          => 'edit_'         . $singular_base,
1418                 'read_post'          => 'read_'         . $singular_base,
1419                 'delete_post'        => 'delete_'       . $singular_base,
1420                 // Primitive capabilities used outside of map_meta_cap():
1421                 'edit_posts'         => 'edit_'         . $plural_base,
1422                 'edit_others_posts'  => 'edit_others_'  . $plural_base,
1423                 'publish_posts'      => 'publish_'      . $plural_base,
1424                 'read_private_posts' => 'read_private_' . $plural_base,
1425         );
1426
1427         // Primitive capabilities used within map_meta_cap():
1428         if ( $args->map_meta_cap ) {
1429                 $default_capabilities_for_mapping = array(
1430                         'read'                   => 'read',
1431                         'delete_posts'           => 'delete_'           . $plural_base,
1432                         'delete_private_posts'   => 'delete_private_'   . $plural_base,
1433                         'delete_published_posts' => 'delete_published_' . $plural_base,
1434                         'delete_others_posts'    => 'delete_others_'    . $plural_base,
1435                         'edit_private_posts'     => 'edit_private_'     . $plural_base,
1436                         'edit_published_posts'   => 'edit_published_'   . $plural_base,
1437                 );
1438                 $default_capabilities = array_merge( $default_capabilities, $default_capabilities_for_mapping );
1439         }
1440
1441         $capabilities = array_merge( $default_capabilities, $args->capabilities );
1442
1443         // Post creation capability simply maps to edit_posts by default:
1444         if ( ! isset( $capabilities['create_posts'] ) )
1445                 $capabilities['create_posts'] = $capabilities['edit_posts'];
1446
1447         // Remember meta capabilities for future reference.
1448         if ( $args->map_meta_cap )
1449                 _post_type_meta_capabilities( $capabilities );
1450
1451         return (object) $capabilities;
1452 }
1453
1454 /**
1455  * Stores or returns a list of post type meta caps for map_meta_cap().
1456  *
1457  * @since 3.1.0
1458  * @access private
1459  */
1460 function _post_type_meta_capabilities( $capabilities = null ) {
1461         static $meta_caps = array();
1462         if ( null === $capabilities )
1463                 return $meta_caps;
1464         foreach ( $capabilities as $core => $custom ) {
1465                 if ( in_array( $core, array( 'read_post', 'delete_post', 'edit_post' ) ) )
1466                         $meta_caps[ $custom ] = $core;
1467         }
1468 }
1469
1470 /**
1471  * Builds an object with all post type labels out of a post type object
1472  *
1473  * Accepted keys of the label array in the post type object:
1474  * - name - general name for the post type, usually plural. The same and overridden by $post_type_object->label. Default is Posts/Pages
1475  * - singular_name - name for one object of this post type. Default is Post/Page
1476  * - add_new - Default is Add New for both hierarchical and non-hierarchical types. When internationalizing this string, please use a {@link http://codex.wordpress.org/I18n_for_WordPress_Developers#Disambiguation_by_context gettext context} matching your post type. Example: <code>_x('Add New', 'product');</code>
1477  * - add_new_item - Default is Add New Post/Add New Page
1478  * - edit_item - Default is Edit Post/Edit Page
1479  * - new_item - Default is New Post/New Page
1480  * - view_item - Default is View Post/View Page
1481  * - search_items - Default is Search Posts/Search Pages
1482  * - not_found - Default is No posts found/No pages found
1483  * - not_found_in_trash - Default is No posts found in Trash/No pages found in Trash
1484  * - parent_item_colon - This string isn't used on non-hierarchical types. In hierarchical ones the default is Parent Page:
1485  * - all_items - String for the submenu. Default is All Posts/All Pages
1486  * - menu_name - Default is the same as <code>name</code>
1487  *
1488  * Above, the first default value is for non-hierarchical post types (like posts) and the second one is for hierarchical post types (like pages).
1489  *
1490  * @since 3.0.0
1491  * @param object $post_type_object
1492  * @return object object with all the labels as member variables
1493  */
1494 function get_post_type_labels( $post_type_object ) {
1495         $nohier_vs_hier_defaults = array(
1496                 'name' => array( _x('Posts', 'post type general name'), _x('Pages', 'post type general name') ),
1497                 'singular_name' => array( _x('Post', 'post type singular name'), _x('Page', 'post type singular name') ),
1498                 'add_new' => array( _x('Add New', 'post'), _x('Add New', 'page') ),
1499                 'add_new_item' => array( __('Add New Post'), __('Add New Page') ),
1500                 'edit_item' => array( __('Edit Post'), __('Edit Page') ),
1501                 'new_item' => array( __('New Post'), __('New Page') ),
1502                 'view_item' => array( __('View Post'), __('View Page') ),
1503                 'search_items' => array( __('Search Posts'), __('Search Pages') ),
1504                 'not_found' => array( __('No posts found.'), __('No pages found.') ),
1505                 'not_found_in_trash' => array( __('No posts found in Trash.'), __('No pages found in Trash.') ),
1506                 'parent_item_colon' => array( null, __('Parent Page:') ),
1507                 'all_items' => array( __( 'All Posts' ), __( 'All Pages' ) )
1508         );
1509         $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
1510
1511         $labels = _get_custom_object_labels( $post_type_object, $nohier_vs_hier_defaults );
1512
1513         $post_type = $post_type_object->name;
1514         return apply_filters( "post_type_labels_{$post_type}", $labels );
1515 }
1516
1517 /**
1518  * Builds an object with custom-something object (post type, taxonomy) labels out of a custom-something object
1519  *
1520  * @access private
1521  * @since 3.0.0
1522  */
1523 function _get_custom_object_labels( $object, $nohier_vs_hier_defaults ) {
1524
1525         if ( isset( $object->label ) && empty( $object->labels['name'] ) )
1526                 $object->labels['name'] = $object->label;
1527
1528         if ( !isset( $object->labels['singular_name'] ) && isset( $object->labels['name'] ) )
1529                 $object->labels['singular_name'] = $object->labels['name'];
1530
1531         if ( ! isset( $object->labels['name_admin_bar'] ) )
1532                 $object->labels['name_admin_bar'] = isset( $object->labels['singular_name'] ) ? $object->labels['singular_name'] : $object->name;
1533
1534         if ( !isset( $object->labels['menu_name'] ) && isset( $object->labels['name'] ) )
1535                 $object->labels['menu_name'] = $object->labels['name'];
1536
1537         if ( !isset( $object->labels['all_items'] ) && isset( $object->labels['menu_name'] ) )
1538                 $object->labels['all_items'] = $object->labels['menu_name'];
1539
1540         foreach ( $nohier_vs_hier_defaults as $key => $value )
1541                         $defaults[$key] = $object->hierarchical ? $value[1] : $value[0];
1542
1543         $labels = array_merge( $defaults, $object->labels );
1544         return (object)$labels;
1545 }
1546
1547 /**
1548  * Adds submenus for post types.
1549  *
1550  * @access private
1551  * @since 3.1.0
1552  */
1553 function _add_post_type_submenus() {
1554         foreach ( get_post_types( array( 'show_ui' => true ) ) as $ptype ) {
1555                 $ptype_obj = get_post_type_object( $ptype );
1556                 // Submenus only.
1557                 if ( ! $ptype_obj->show_in_menu || $ptype_obj->show_in_menu === true )
1558                         continue;
1559                 add_submenu_page( $ptype_obj->show_in_menu, $ptype_obj->labels->name, $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, "edit.php?post_type=$ptype" );
1560         }
1561 }
1562 add_action( 'admin_menu', '_add_post_type_submenus' );
1563
1564 /**
1565  * Register support of certain features for a post type.
1566  *
1567  * All features are directly associated with a functional area of the edit screen, such as the
1568  * editor or a meta box: 'title', 'editor', 'comments', 'revisions', 'trackbacks', 'author',
1569  * 'excerpt', 'page-attributes', 'thumbnail', and 'custom-fields'.
1570  *
1571  * Additionally, the 'revisions' feature dictates whether the post type will store revisions,
1572  * and the 'comments' feature dictates whether the comments count will show on the edit screen.
1573  *
1574  * @since 3.0.0
1575  * @param string $post_type The post type for which to add the feature
1576  * @param string|array $feature the feature being added, can be an array of feature strings or a single string
1577  */
1578 function add_post_type_support( $post_type, $feature ) {
1579         global $_wp_post_type_features;
1580
1581         $features = (array) $feature;
1582         foreach ($features as $feature) {
1583                 if ( func_num_args() == 2 )
1584                         $_wp_post_type_features[$post_type][$feature] = true;
1585                 else
1586                         $_wp_post_type_features[$post_type][$feature] = array_slice( func_get_args(), 2 );
1587         }
1588 }
1589
1590 /**
1591  * Remove support for a feature from a post type.
1592  *
1593  * @since 3.0.0
1594  * @param string $post_type The post type for which to remove the feature
1595  * @param string $feature The feature being removed
1596  */
1597 function remove_post_type_support( $post_type, $feature ) {
1598         global $_wp_post_type_features;
1599
1600         if ( !isset($_wp_post_type_features[$post_type]) )
1601                 return;
1602
1603         if ( isset($_wp_post_type_features[$post_type][$feature]) )
1604                 unset($_wp_post_type_features[$post_type][$feature]);
1605 }
1606
1607 /**
1608  * Get all the post type features
1609  *
1610  * @since 3.4.0
1611  * @param string $post_type The post type
1612  * @return array
1613  */
1614
1615 function get_all_post_type_supports( $post_type ) {
1616         global $_wp_post_type_features;
1617
1618         if ( isset( $_wp_post_type_features[$post_type] ) )
1619                 return $_wp_post_type_features[$post_type];
1620
1621         return array();
1622 }
1623
1624 /**
1625  * Checks a post type's support for a given feature
1626  *
1627  * @since 3.0.0
1628  * @param string $post_type The post type being checked
1629  * @param string $feature the feature being checked
1630  * @return boolean
1631  */
1632
1633 function post_type_supports( $post_type, $feature ) {
1634         global $_wp_post_type_features;
1635
1636         if ( !isset( $_wp_post_type_features[$post_type][$feature] ) )
1637                 return false;
1638
1639         // If no args passed then no extra checks need be performed
1640         if ( func_num_args() <= 2 )
1641                 return true;
1642
1643         // @todo Allow pluggable arg checking
1644         //$args = array_slice( func_get_args(), 2 );
1645
1646         return true;
1647 }
1648
1649 /**
1650  * Updates the post type for the post ID.
1651  *
1652  * The page or post cache will be cleaned for the post ID.
1653  *
1654  * @since 2.5.0
1655  *
1656  * @uses $wpdb
1657  *
1658  * @param int $post_id Post ID to change post type. Not actually optional.
1659  * @param string $post_type Optional, default is post. Supported values are 'post' or 'page' to
1660  *  name a few.
1661  * @return int Amount of rows changed. Should be 1 for success and 0 for failure.
1662  */
1663 function set_post_type( $post_id = 0, $post_type = 'post' ) {
1664         global $wpdb;
1665
1666         $post_type = sanitize_post_field('post_type', $post_type, $post_id, 'db');
1667         $return = $wpdb->update( $wpdb->posts, array('post_type' => $post_type), array('ID' => $post_id) );
1668
1669         clean_post_cache( $post_id );
1670
1671         return $return;
1672 }
1673
1674 /**
1675  * Retrieve list of latest posts or posts matching criteria.
1676  *
1677  * The defaults are as follows:
1678  *     'numberposts' - Default is 5. Total number of posts to retrieve.
1679  *     'offset' - Default is 0. See {@link WP_Query::query()} for more.
1680  *     'category' - What category to pull the posts from.
1681  *     'orderby' - Default is 'post_date'. How to order the posts.
1682  *     'order' - Default is 'DESC'. The order to retrieve the posts.
1683  *     'include' - See {@link WP_Query::query()} for more.
1684  *     'exclude' - See {@link WP_Query::query()} for more.
1685  *     'meta_key' - See {@link WP_Query::query()} for more.
1686  *     'meta_value' - See {@link WP_Query::query()} for more.
1687  *     'post_type' - Default is 'post'. Can be 'page', or 'attachment' to name a few.
1688  *     'post_parent' - The parent of the post or post type.
1689  *     'post_status' - Default is 'publish'. Post status to retrieve.
1690  *
1691  * @since 1.2.0
1692  * @uses $wpdb
1693  * @uses WP_Query::query() See for more default arguments and information.
1694  * @link http://codex.wordpress.org/Template_Tags/get_posts
1695  *
1696  * @param array $args Optional. Overrides defaults.
1697  * @return array List of posts.
1698  */
1699 function get_posts($args = null) {
1700         $defaults = array(
1701                 'numberposts' => 5, 'offset' => 0,
1702                 'category' => 0, 'orderby' => 'post_date',
1703                 'order' => 'DESC', 'include' => array(),
1704                 'exclude' => array(), 'meta_key' => '',
1705                 'meta_value' =>'', 'post_type' => 'post',
1706                 'suppress_filters' => true
1707         );
1708
1709         $r = wp_parse_args( $args, $defaults );
1710         if ( empty( $r['post_status'] ) )
1711                 $r['post_status'] = ( 'attachment' == $r['post_type'] ) ? 'inherit' : 'publish';
1712         if ( ! empty($r['numberposts']) && empty($r['posts_per_page']) )
1713                 $r['posts_per_page'] = $r['numberposts'];
1714         if ( ! empty($r['category']) )
1715                 $r['cat'] = $r['category'];
1716         if ( ! empty($r['include']) ) {
1717                 $incposts = wp_parse_id_list( $r['include'] );
1718                 $r['posts_per_page'] = count($incposts);  // only the number of posts included
1719                 $r['post__in'] = $incposts;
1720         } elseif ( ! empty($r['exclude']) )
1721                 $r['post__not_in'] = wp_parse_id_list( $r['exclude'] );
1722
1723         $r['ignore_sticky_posts'] = true;
1724         $r['no_found_rows'] = true;
1725
1726         $get_posts = new WP_Query;
1727         return $get_posts->query($r);
1728
1729 }
1730
1731 //
1732 // Post meta functions
1733 //
1734
1735 /**
1736  * Add meta data field to a post.
1737  *
1738  * Post meta data is called "Custom Fields" on the Administration Screen.
1739  *
1740  * @since 1.5.0
1741  * @uses $wpdb
1742  * @link http://codex.wordpress.org/Function_Reference/add_post_meta
1743  *
1744  * @param int $post_id Post ID.
1745  * @param string $meta_key Metadata name.
1746  * @param mixed $meta_value Metadata value.
1747  * @param bool $unique Optional, default is false. Whether the same key should not be added.
1748  * @return bool False for failure. True for success.
1749  */
1750 function add_post_meta($post_id, $meta_key, $meta_value, $unique = false) {
1751         // make sure meta is added to the post, not a revision
1752         if ( $the_post = wp_is_post_revision($post_id) )
1753                 $post_id = $the_post;
1754
1755         return add_metadata('post', $post_id, $meta_key, $meta_value, $unique);
1756 }
1757
1758 /**
1759  * Remove metadata matching criteria from a post.
1760  *
1761  * You can match based on the key, or key and value. Removing based on key and
1762  * value, will keep from removing duplicate metadata with the same key. It also
1763  * allows removing all metadata matching key, if needed.
1764  *
1765  * @since 1.5.0
1766  * @uses $wpdb
1767  * @link http://codex.wordpress.org/Function_Reference/delete_post_meta
1768  *
1769  * @param int $post_id post ID
1770  * @param string $meta_key Metadata name.
1771  * @param mixed $meta_value Optional. Metadata value.
1772  * @return bool False for failure. True for success.
1773  */
1774 function delete_post_meta($post_id, $meta_key, $meta_value = '') {
1775         // make sure meta is added to the post, not a revision
1776         if ( $the_post = wp_is_post_revision($post_id) )
1777                 $post_id = $the_post;
1778
1779         return delete_metadata('post', $post_id, $meta_key, $meta_value);
1780 }
1781
1782 /**
1783  * Retrieve post meta field for a post.
1784  *
1785  * @since 1.5.0
1786  * @uses $wpdb
1787  * @link http://codex.wordpress.org/Function_Reference/get_post_meta
1788  *
1789  * @param int $post_id Post ID.
1790  * @param string $key Optional. The meta key to retrieve. By default, returns data for all keys.
1791  * @param bool $single Whether to return a single value.
1792  * @return mixed Will be an array if $single is false. Will be value of meta data field if $single
1793  *  is true.
1794  */
1795 function get_post_meta($post_id, $key = '', $single = false) {
1796         return get_metadata('post', $post_id, $key, $single);
1797 }
1798
1799 /**
1800  * Update post meta field based on post ID.
1801  *
1802  * Use the $prev_value parameter to differentiate between meta fields with the
1803  * same key and post ID.
1804  *
1805  * If the meta field for the post does not exist, it will be added.
1806  *
1807  * @since 1.5.0
1808  * @uses $wpdb
1809  * @link http://codex.wordpress.org/Function_Reference/update_post_meta
1810  *
1811  * @param int $post_id Post ID.
1812  * @param string $meta_key Metadata key.
1813  * @param mixed $meta_value Metadata value.
1814  * @param mixed $prev_value Optional. Previous value to check before removing.
1815  * @return bool False on failure, true if success.
1816  */
1817 function update_post_meta($post_id, $meta_key, $meta_value, $prev_value = '') {
1818         // make sure meta is added to the post, not a revision
1819         if ( $the_post = wp_is_post_revision($post_id) )
1820                 $post_id = $the_post;
1821
1822         return update_metadata('post', $post_id, $meta_key, $meta_value, $prev_value);
1823 }
1824
1825 /**
1826  * Delete everything from post meta matching meta key.
1827  *
1828  * @since 2.3.0
1829  * @uses $wpdb
1830  *
1831  * @param string $post_meta_key Key to search for when deleting.
1832  * @return bool Whether the post meta key was deleted from the database
1833  */
1834 function delete_post_meta_by_key($post_meta_key) {
1835         return delete_metadata( 'post', null, $post_meta_key, '', true );
1836 }
1837
1838 /**
1839  * Retrieve post meta fields, based on post ID.
1840  *
1841  * The post meta fields are retrieved from the cache where possible,
1842  * so the function is optimized to be called more than once.
1843  *
1844  * @since 1.2.0
1845  * @link http://codex.wordpress.org/Function_Reference/get_post_custom
1846  *
1847  * @param int $post_id Post ID.
1848  * @return array
1849  */
1850 function get_post_custom( $post_id = 0 ) {
1851         $post_id = absint( $post_id );
1852         if ( ! $post_id )
1853                 $post_id = get_the_ID();
1854
1855         return get_post_meta( $post_id );
1856 }
1857
1858 /**
1859  * Retrieve meta field names for a post.
1860  *
1861  * If there are no meta fields, then nothing (null) will be returned.
1862  *
1863  * @since 1.2.0
1864  * @link http://codex.wordpress.org/Function_Reference/get_post_custom_keys
1865  *
1866  * @param int $post_id post ID
1867  * @return array|null Either array of the keys, or null if keys could not be retrieved.
1868  */
1869 function get_post_custom_keys( $post_id = 0 ) {
1870         $custom = get_post_custom( $post_id );
1871
1872         if ( !is_array($custom) )
1873                 return;
1874
1875         if ( $keys = array_keys($custom) )
1876                 return $keys;
1877 }
1878
1879 /**
1880  * Retrieve values for a custom post field.
1881  *
1882  * The parameters must not be considered optional. All of the post meta fields
1883  * will be retrieved and only the meta field key values returned.
1884  *
1885  * @since 1.2.0
1886  * @link http://codex.wordpress.org/Function_Reference/get_post_custom_values
1887  *
1888  * @param string $key Meta field key.
1889  * @param int $post_id Post ID
1890  * @return array Meta field values.
1891  */
1892 function get_post_custom_values( $key = '', $post_id = 0 ) {
1893         if ( !$key )
1894                 return null;
1895
1896         $custom = get_post_custom($post_id);
1897
1898         return isset($custom[$key]) ? $custom[$key] : null;
1899 }
1900
1901 /**
1902  * Check if post is sticky.
1903  *
1904  * Sticky posts should remain at the top of The Loop. If the post ID is not
1905  * given, then The Loop ID for the current post will be used.
1906  *
1907  * @since 2.7.0
1908  *
1909  * @param int $post_id Optional. Post ID.
1910  * @return bool Whether post is sticky.
1911  */
1912 function is_sticky( $post_id = 0 ) {
1913         $post_id = absint( $post_id );
1914
1915         if ( ! $post_id )
1916                 $post_id = get_the_ID();
1917
1918         $stickies = get_option( 'sticky_posts' );
1919
1920         if ( ! is_array( $stickies ) )
1921                 return false;
1922
1923         if ( in_array( $post_id, $stickies ) )
1924                 return true;
1925
1926         return false;
1927 }
1928
1929 /**
1930  * Sanitize every post field.
1931  *
1932  * If the context is 'raw', then the post object or array will get minimal santization of the int fields.
1933  *
1934  * @since 2.3.0
1935  * @uses sanitize_post_field() Used to sanitize the fields.
1936  *
1937  * @param object|WP_Post|array $post The Post Object or Array
1938  * @param string $context Optional, default is 'display'. How to sanitize post fields.
1939  * @return object|WP_Post|array The now sanitized Post Object or Array (will be the same type as $post)
1940  */
1941 function sanitize_post($post, $context = 'display') {
1942         if ( is_object($post) ) {
1943                 // Check if post already filtered for this context
1944                 if ( isset($post->filter) && $context == $post->filter )
1945                         return $post;
1946                 if ( !isset($post->ID) )
1947                         $post->ID = 0;
1948                 foreach ( array_keys(get_object_vars($post)) as $field )
1949                         $post->$field = sanitize_post_field($field, $post->$field, $post->ID, $context);
1950                 $post->filter = $context;
1951         } else {
1952                 // Check if post already filtered for this context
1953                 if ( isset($post['filter']) && $context == $post['filter'] )
1954                         return $post;
1955                 if ( !isset($post['ID']) )
1956                         $post['ID'] = 0;
1957                 foreach ( array_keys($post) as $field )
1958                         $post[$field] = sanitize_post_field($field, $post[$field], $post['ID'], $context);
1959                 $post['filter'] = $context;
1960         }
1961         return $post;
1962 }
1963
1964 /**
1965  * Sanitize post field based on context.
1966  *
1967  * Possible context values are:  'raw', 'edit', 'db', 'display', 'attribute' and 'js'. The
1968  * 'display' context is used by default. 'attribute' and 'js' contexts are treated like 'display'
1969  * when calling filters.
1970  *
1971  * @since 2.3.0
1972  * @uses apply_filters() Calls 'edit_$field' and '{$field_no_prefix}_edit_pre' passing $value and
1973  *  $post_id if $context == 'edit' and field name prefix == 'post_'.
1974  *
1975  * @uses apply_filters() Calls 'edit_post_$field' passing $value and $post_id if $context == 'db'.
1976  * @uses apply_filters() Calls 'pre_$field' passing $value if $context == 'db' and field name prefix == 'post_'.
1977  * @uses apply_filters() Calls '{$field}_pre' passing $value if $context == 'db' and field name prefix != 'post_'.
1978  *
1979  * @uses apply_filters() Calls '$field' passing $value, $post_id and $context if $context == anything
1980  *  other than 'raw', 'edit' and 'db' and field name prefix == 'post_'.
1981  * @uses apply_filters() Calls 'post_$field' passing $value if $context == anything other than 'raw',
1982  *  'edit' and 'db' and field name prefix != 'post_'.
1983  *
1984  * @param string $field The Post Object field name.
1985  * @param mixed $value The Post Object value.
1986  * @param int $post_id Post ID.
1987  * @param string $context How to sanitize post fields. Looks for 'raw', 'edit', 'db', 'display',
1988  *               'attribute' and 'js'.
1989  * @return mixed Sanitized value.
1990  */
1991 function sanitize_post_field($field, $value, $post_id, $context) {
1992         $int_fields = array('ID', 'post_parent', 'menu_order');
1993         if ( in_array($field, $int_fields) )
1994                 $value = (int) $value;
1995
1996         // Fields which contain arrays of ints.
1997         $array_int_fields = array( 'ancestors' );
1998         if ( in_array($field, $array_int_fields) ) {
1999                 $value = array_map( 'absint', $value);
2000                 return $value;
2001         }
2002
2003         if ( 'raw' == $context )
2004                 return $value;
2005
2006         $prefixed = false;
2007         if ( false !== strpos($field, 'post_') ) {
2008                 $prefixed = true;
2009                 $field_no_prefix = str_replace('post_', '', $field);
2010         }
2011
2012         if ( 'edit' == $context ) {
2013                 $format_to_edit = array('post_content', 'post_excerpt', 'post_title', 'post_password');
2014
2015                 if ( $prefixed ) {
2016                         $value = apply_filters("edit_{$field}", $value, $post_id);
2017                         // Old school
2018                         $value = apply_filters("{$field_no_prefix}_edit_pre", $value, $post_id);
2019                 } else {
2020                         $value = apply_filters("edit_post_{$field}", $value, $post_id);
2021                 }
2022
2023                 if ( in_array($field, $format_to_edit) ) {
2024                         if ( 'post_content' == $field )
2025                                 $value = format_to_edit($value, user_can_richedit());
2026                         else
2027                                 $value = format_to_edit($value);
2028                 } else {
2029                         $value = esc_attr($value);
2030                 }
2031         } else if ( 'db' == $context ) {
2032                 if ( $prefixed ) {
2033                         $value = apply_filters("pre_{$field}", $value);
2034                         $value = apply_filters("{$field_no_prefix}_save_pre", $value);
2035                 } else {
2036                         $value = apply_filters("pre_post_{$field}", $value);
2037                         $value = apply_filters("{$field}_pre", $value);
2038                 }
2039         } else {
2040                 // Use display filters by default.
2041                 if ( $prefixed )
2042                         $value = apply_filters($field, $value, $post_id, $context);
2043                 else
2044                         $value = apply_filters("post_{$field}", $value, $post_id, $context);
2045         }
2046
2047         if ( 'attribute' == $context )
2048                 $value = esc_attr($value);
2049         else if ( 'js' == $context )
2050                 $value = esc_js($value);
2051
2052         return $value;
2053 }
2054
2055 /**
2056  * Make a post sticky.
2057  *
2058  * Sticky posts should be displayed at the top of the front page.
2059  *
2060  * @since 2.7.0
2061  *
2062  * @param int $post_id Post ID.
2063  */
2064 function stick_post($post_id) {
2065         $stickies = get_option('sticky_posts');
2066
2067         if ( !is_array($stickies) )
2068                 $stickies = array($post_id);
2069
2070         if ( ! in_array($post_id, $stickies) )
2071                 $stickies[] = $post_id;
2072
2073         update_option('sticky_posts', $stickies);
2074 }
2075
2076 /**
2077  * Unstick a post.
2078  *
2079  * Sticky posts should be displayed at the top of the front page.
2080  *
2081  * @since 2.7.0
2082  *
2083  * @param int $post_id Post ID.
2084  */
2085 function unstick_post($post_id) {
2086         $stickies = get_option('sticky_posts');
2087
2088         if ( !is_array($stickies) )
2089                 return;
2090
2091         if ( ! in_array($post_id, $stickies) )
2092                 return;
2093
2094         $offset = array_search($post_id, $stickies);
2095         if ( false === $offset )
2096                 return;
2097
2098         array_splice($stickies, $offset, 1);
2099
2100         update_option('sticky_posts', $stickies);
2101 }
2102
2103 /**
2104  * Count number of posts of a post type and is user has permissions to view.
2105  *
2106  * This function provides an efficient method of finding the amount of post's
2107  * type a blog has. Another method is to count the amount of items in
2108  * get_posts(), but that method has a lot of overhead with doing so. Therefore,
2109  * when developing for 2.5+, use this function instead.
2110  *
2111  * The $perm parameter checks for 'readable' value and if the user can read
2112  * private posts, it will display that for the user that is signed in.
2113  *
2114  * @since 2.5.0
2115  * @link http://codex.wordpress.org/Template_Tags/wp_count_posts
2116  *
2117  * @param string $type Optional. Post type to retrieve count
2118  * @param string $perm Optional. 'readable' or empty.
2119  * @return object Number of posts for each status
2120  */
2121 function wp_count_posts( $type = 'post', $perm = '' ) {
2122         global $wpdb;
2123
2124         $user = wp_get_current_user();
2125
2126         $cache_key = $type;
2127
2128         $query = "SELECT post_status, COUNT( * ) AS num_posts FROM {$wpdb->posts} WHERE post_type = %s";
2129         if ( 'readable' == $perm && is_user_logged_in() ) {
2130                 $post_type_object = get_post_type_object($type);
2131                 if ( !current_user_can( $post_type_object->cap->read_private_posts ) ) {
2132                         $cache_key .= '_' . $perm . '_' . $user->ID;
2133                         $query .= " AND (post_status != 'private' OR ( post_author = '$user->ID' AND post_status = 'private' ))";
2134                 }
2135         }
2136         $query .= ' GROUP BY post_status';
2137
2138         $count = wp_cache_get($cache_key, 'counts');
2139         if ( false !== $count )
2140                 return $count;
2141
2142         $count = $wpdb->get_results( $wpdb->prepare( $query, $type ), ARRAY_A );
2143
2144         $stats = array();
2145         foreach ( get_post_stati() as $state )
2146                 $stats[$state] = 0;
2147
2148         foreach ( (array) $count as $row )
2149                 $stats[$row['post_status']] = $row['num_posts'];
2150
2151         $stats = (object) $stats;
2152         wp_cache_set($cache_key, $stats, 'counts');
2153
2154         return $stats;
2155 }
2156
2157 /**
2158  * Count number of attachments for the mime type(s).
2159  *
2160  * If you set the optional mime_type parameter, then an array will still be
2161  * returned, but will only have the item you are looking for. It does not give
2162  * you the number of attachments that are children of a post. You can get that
2163  * by counting the number of children that post has.
2164  *
2165  * @since 2.5.0
2166  *
2167  * @param string|array $mime_type Optional. Array or comma-separated list of MIME patterns.
2168  * @return array Number of posts for each mime type.
2169  */
2170 function wp_count_attachments( $mime_type = '' ) {
2171         global $wpdb;
2172
2173         $and = wp_post_mime_type_where( $mime_type );
2174         $count = $wpdb->get_results( "SELECT post_mime_type, COUNT( * ) AS num_posts FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status != 'trash' $and GROUP BY post_mime_type", ARRAY_A );
2175
2176         $stats = array( );
2177         foreach( (array) $count as $row ) {
2178                 $stats[$row['post_mime_type']] = $row['num_posts'];
2179         }
2180         $stats['trash'] = $wpdb->get_var( "SELECT COUNT( * ) FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status = 'trash' $and");
2181
2182         return (object) $stats;
2183 }
2184
2185 /**
2186  * Get default post mime types
2187  *
2188  * @since 2.9.0
2189  *
2190  * @return array
2191  */
2192 function get_post_mime_types() {
2193         $post_mime_types = array(       //      array( adj, noun )
2194                 'image' => array(__('Images'), __('Manage Images'), _n_noop('Image <span class="count">(%s)</span>', 'Images <span class="count">(%s)</span>')),
2195                 'audio' => array(__('Audio'), __('Manage Audio'), _n_noop('Audio <span class="count">(%s)</span>', 'Audio <span class="count">(%s)</span>')),
2196                 'video' => array(__('Video'), __('Manage Video'), _n_noop('Video <span class="count">(%s)</span>', 'Video <span class="count">(%s)</span>')),
2197         );
2198
2199         return apply_filters('post_mime_types', $post_mime_types);
2200 }
2201
2202 /**
2203  * Check a MIME-Type against a list.
2204  *
2205  * If the wildcard_mime_types parameter is a string, it must be comma separated
2206  * list. If the real_mime_types is a string, it is also comma separated to
2207  * create the list.
2208  *
2209  * @since 2.5.0
2210  *
2211  * @param string|array $wildcard_mime_types e.g. audio/mpeg or image (same as image/*) or
2212  *  flash (same as *flash*).
2213  * @param string|array $real_mime_types post_mime_type values
2214  * @return array array(wildcard=>array(real types))
2215  */
2216 function wp_match_mime_types($wildcard_mime_types, $real_mime_types) {
2217         $matches = array();
2218         if ( is_string($wildcard_mime_types) )
2219                 $wildcard_mime_types = array_map('trim', explode(',', $wildcard_mime_types));
2220         if ( is_string($real_mime_types) )
2221                 $real_mime_types = array_map('trim', explode(',', $real_mime_types));
2222         $wild = '[-._a-z0-9]*';
2223         foreach ( (array) $wildcard_mime_types as $type ) {
2224                 $type = str_replace('*', $wild, $type);
2225                 $patternses[1][$type] = "^$type$";
2226                 if ( false === strpos($type, '/') ) {
2227                         $patternses[2][$type] = "^$type/";
2228                         $patternses[3][$type] = $type;
2229                 }
2230         }
2231         asort($patternses);
2232         foreach ( $patternses as $patterns )
2233                 foreach ( $patterns as $type => $pattern )
2234                         foreach ( (array) $real_mime_types as $real )
2235                                 if ( preg_match("#$pattern#", $real) && ( empty($matches[$type]) || false === array_search($real, $matches[$type]) ) )
2236                                         $matches[$type][] = $real;
2237         return $matches;
2238 }
2239
2240 /**
2241  * Convert MIME types into SQL.
2242  *
2243  * @since 2.5.0
2244  *
2245  * @param string|array $post_mime_types List of mime types or comma separated string of mime types.
2246  * @param string $table_alias Optional. Specify a table alias, if needed.
2247  * @return string The SQL AND clause for mime searching.
2248  */
2249 function wp_post_mime_type_where($post_mime_types, $table_alias = '') {
2250         $where = '';
2251         $wildcards = array('', '%', '%/%');
2252         if ( is_string($post_mime_types) )
2253                 $post_mime_types = array_map('trim', explode(',', $post_mime_types));
2254         foreach ( (array) $post_mime_types as $mime_type ) {
2255                 $mime_type = preg_replace('/\s/', '', $mime_type);
2256                 $slashpos = strpos($mime_type, '/');
2257                 if ( false !== $slashpos ) {
2258                         $mime_group = preg_replace('/[^-*.a-zA-Z0-9]/', '', substr($mime_type, 0, $slashpos));
2259                         $mime_subgroup = preg_replace('/[^-*.+a-zA-Z0-9]/', '', substr($mime_type, $slashpos + 1));
2260                         if ( empty($mime_subgroup) )
2261                                 $mime_subgroup = '*';
2262                         else
2263                                 $mime_subgroup = str_replace('/', '', $mime_subgroup);
2264                         $mime_pattern = "$mime_group/$mime_subgroup";
2265                 } else {
2266                         $mime_pattern = preg_replace('/[^-*.a-zA-Z0-9]/', '', $mime_type);
2267                         if ( false === strpos($mime_pattern, '*') )
2268                                 $mime_pattern .= '/*';
2269                 }
2270
2271                 $mime_pattern = preg_replace('/\*+/', '%', $mime_pattern);
2272
2273                 if ( in_array( $mime_type, $wildcards ) )
2274                         return '';
2275
2276                 if ( false !== strpos($mime_pattern, '%') )
2277                         $wheres[] = empty($table_alias) ? "post_mime_type LIKE '$mime_pattern'" : "$table_alias.post_mime_type LIKE '$mime_pattern'";
2278                 else
2279                         $wheres[] = empty($table_alias) ? "post_mime_type = '$mime_pattern'" : "$table_alias.post_mime_type = '$mime_pattern'";
2280         }
2281         if ( !empty($wheres) )
2282                 $where = ' AND (' . join(' OR ', $wheres) . ') ';
2283         return $where;
2284 }
2285
2286 /**
2287  * Trashes or deletes a post or page.
2288  *
2289  * When the post and page is permanently deleted, everything that is tied to it is deleted also.
2290  * This includes comments, post meta fields, and terms associated with the post.
2291  *
2292  * The post or page is moved to trash instead of permanently deleted unless trash is
2293  * disabled, item is already in the trash, or $force_delete is true.
2294  *
2295  * @since 1.0.0
2296  * @uses do_action() on 'delete_post' before deletion unless post type is 'attachment'.
2297  * @uses do_action() on 'deleted_post' after deletion unless post type is 'attachment'.
2298  * @uses wp_delete_attachment() if post type is 'attachment'.
2299  * @uses wp_trash_post() if item should be trashed.
2300  *
2301  * @param int $postid Post ID.
2302  * @param bool $force_delete Whether to bypass trash and force deletion. Defaults to false.
2303  * @return mixed False on failure
2304  */
2305 function wp_delete_post( $postid = 0, $force_delete = false ) {
2306         global $wpdb;
2307
2308         if ( !$post = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->posts WHERE ID = %d", $postid)) )
2309                 return $post;
2310
2311         if ( !$force_delete && ( $post->post_type == 'post' || $post->post_type == 'page') && get_post_status( $postid ) != 'trash' && EMPTY_TRASH_DAYS )
2312                         return wp_trash_post($postid);
2313
2314         if ( $post->post_type == 'attachment' )
2315                 return wp_delete_attachment( $postid, $force_delete );
2316
2317         do_action('before_delete_post', $postid);
2318
2319         delete_post_meta($postid,'_wp_trash_meta_status');
2320         delete_post_meta($postid,'_wp_trash_meta_time');
2321
2322         wp_delete_object_term_relationships($postid, get_object_taxonomies($post->post_type));
2323
2324         $parent_data = array( 'post_parent' => $post->post_parent );
2325         $parent_where = array( 'post_parent' => $postid );
2326
2327         if ( is_post_type_hierarchical( $post->post_type ) ) {
2328                 // Point children of this page to its parent, also clean the cache of affected children
2329                 $children_query = $wpdb->prepare( "SELECT * FROM $wpdb->posts WHERE post_parent = %d AND post_type = %s", $postid, $post->post_type );
2330                 $children = $wpdb->get_results( $children_query );
2331
2332                 $wpdb->update( $wpdb->posts, $parent_data, $parent_where + array( 'post_type' => $post->post_type ) );
2333         }
2334
2335         if ( 'page' == $post->post_type) {
2336                 // if the page is defined in option page_on_front or post_for_posts,
2337                 // adjust the corresponding options
2338                 if ( get_option('page_on_front') == $postid ) {
2339                         update_option('show_on_front', 'posts');
2340                         delete_option('page_on_front');
2341                 }
2342                 if ( get_option('page_for_posts') == $postid ) {
2343                         delete_option('page_for_posts');
2344                 }
2345         } else {
2346                 unstick_post($postid);
2347         }
2348
2349         // Do raw query. wp_get_post_revisions() is filtered
2350         $revision_ids = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_parent = %d AND post_type = 'revision'", $postid ) );
2351         // Use wp_delete_post (via wp_delete_post_revision) again. Ensures any meta/misplaced data gets cleaned up.
2352         foreach ( $revision_ids as $revision_id )
2353                 wp_delete_post_revision( $revision_id );
2354
2355         // Point all attachments to this post up one level
2356         $wpdb->update( $wpdb->posts, $parent_data, $parent_where + array( 'post_type' => 'attachment' ) );
2357
2358         $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = %d", $postid ));
2359         foreach ( $comment_ids as $comment_id )
2360                 wp_delete_comment( $comment_id, true );
2361
2362         $post_meta_ids = $wpdb->get_col( $wpdb->prepare( "SELECT meta_id FROM $wpdb->postmeta WHERE post_id = %d ", $postid ));
2363         foreach ( $post_meta_ids as $mid )
2364                 delete_metadata_by_mid( 'post', $mid );
2365
2366         do_action( 'delete_post', $postid );
2367         $wpdb->delete( $wpdb->posts, array( 'ID' => $postid ) );
2368         do_action( 'deleted_post', $postid );
2369
2370         clean_post_cache( $post );
2371
2372         if ( is_post_type_hierarchical( $post->post_type ) && $children ) {
2373                 foreach ( $children as $child )
2374                         clean_post_cache( $child );
2375         }
2376
2377         wp_clear_scheduled_hook('publish_future_post', array( $postid ) );
2378
2379         do_action('after_delete_post', $postid);
2380
2381         return $post;
2382 }
2383
2384 /**
2385  * Moves a post or page to the Trash
2386  *
2387  * If trash is disabled, the post or page is permanently deleted.
2388  *
2389  * @since 2.9.0
2390  * @uses do_action() on 'trash_post' before trashing
2391  * @uses do_action() on 'trashed_post' after trashing
2392  * @uses wp_delete_post() if trash is disabled
2393  *
2394  * @param int $post_id Post ID.
2395  * @return mixed False on failure
2396  */
2397 function wp_trash_post($post_id = 0) {
2398         if ( !EMPTY_TRASH_DAYS )
2399                 return wp_delete_post($post_id, true);
2400
2401         if ( !$post = get_post($post_id, ARRAY_A) )
2402                 return $post;
2403
2404         if ( $post['post_status'] == 'trash' )
2405                 return false;
2406
2407         do_action('wp_trash_post', $post_id);
2408
2409         add_post_meta($post_id,'_wp_trash_meta_status', $post['post_status']);
2410         add_post_meta($post_id,'_wp_trash_meta_time', time());
2411
2412         $post['post_status'] = 'trash';
2413         wp_insert_post($post);
2414
2415         wp_trash_post_comments($post_id);
2416
2417         do_action('trashed_post', $post_id);
2418
2419         return $post;
2420 }
2421
2422 /**
2423  * Restores a post or page from the Trash
2424  *
2425  * @since 2.9.0
2426  * @uses do_action() on 'untrash_post' before undeletion
2427  * @uses do_action() on 'untrashed_post' after undeletion
2428  *
2429  * @param int $post_id Post ID.
2430  * @return mixed False on failure
2431  */
2432 function wp_untrash_post($post_id = 0) {
2433         if ( !$post = get_post($post_id, ARRAY_A) )
2434                 return $post;
2435
2436         if ( $post['post_status'] != 'trash' )
2437                 return false;
2438
2439         do_action('untrash_post', $post_id);
2440
2441         $post_status = get_post_meta($post_id, '_wp_trash_meta_status', true);
2442
2443         $post['post_status'] = $post_status;
2444
2445         delete_post_meta($post_id, '_wp_trash_meta_status');
2446         delete_post_meta($post_id, '_wp_trash_meta_time');
2447
2448         wp_insert_post($post);
2449
2450         wp_untrash_post_comments($post_id);
2451
2452         do_action('untrashed_post', $post_id);
2453
2454         return $post;
2455 }
2456
2457 /**
2458  * Moves comments for a post to the trash
2459  *
2460  * @since 2.9.0
2461  * @uses do_action() on 'trash_post_comments' before trashing
2462  * @uses do_action() on 'trashed_post_comments' after trashing
2463  *
2464  * @param int $post Post ID or object.
2465  * @return mixed False on failure
2466  */
2467 function wp_trash_post_comments($post = null) {
2468         global $wpdb;
2469
2470         $post = get_post($post);
2471         if ( empty($post) )
2472                 return;
2473
2474         $post_id = $post->ID;
2475
2476         do_action('trash_post_comments', $post_id);
2477
2478         $comments = $wpdb->get_results( $wpdb->prepare("SELECT comment_ID, comment_approved FROM $wpdb->comments WHERE comment_post_ID = %d", $post_id) );
2479         if ( empty($comments) )
2480                 return;
2481
2482         // Cache current status for each comment
2483         $statuses = array();
2484         foreach ( $comments as $comment )
2485                 $statuses[$comment->comment_ID] = $comment->comment_approved;
2486         add_post_meta($post_id, '_wp_trash_meta_comments_status', $statuses);
2487
2488         // Set status for all comments to post-trashed
2489         $result = $wpdb->update($wpdb->comments, array('comment_approved' => 'post-trashed'), array('comment_post_ID' => $post_id));
2490
2491         clean_comment_cache( array_keys($statuses) );
2492
2493         do_action('trashed_post_comments', $post_id, $statuses);
2494
2495         return $result;
2496 }
2497
2498 /**
2499  * Restore comments for a post from the trash
2500  *
2501  * @since 2.9.0
2502  * @uses do_action() on 'untrash_post_comments' before trashing
2503  * @uses do_action() on 'untrashed_post_comments' after trashing
2504  *
2505  * @param int $post Post ID or object.
2506  * @return mixed False on failure
2507  */
2508 function wp_untrash_post_comments($post = null) {
2509         global $wpdb;
2510
2511         $post = get_post($post);
2512         if ( empty($post) )
2513                 return;
2514
2515         $post_id = $post->ID;
2516
2517         $statuses = get_post_meta($post_id, '_wp_trash_meta_comments_status', true);
2518
2519         if ( empty($statuses) )
2520                 return true;
2521
2522         do_action('untrash_post_comments', $post_id);
2523
2524         // Restore each comment to its original status
2525         $group_by_status = array();
2526         foreach ( $statuses as $comment_id => $comment_status )
2527                 $group_by_status[$comment_status][] = $comment_id;
2528
2529         foreach ( $group_by_status as $status => $comments ) {
2530                 // Sanity check. This shouldn't happen.
2531                 if ( 'post-trashed' == $status )
2532                         $status = '0';
2533                 $comments_in = implode( "', '", $comments );
2534                 $wpdb->query( "UPDATE $wpdb->comments SET comment_approved = '$status' WHERE comment_ID IN ('" . $comments_in . "')" );
2535         }
2536
2537         clean_comment_cache( array_keys($statuses) );
2538
2539         delete_post_meta($post_id, '_wp_trash_meta_comments_status');
2540
2541         do_action('untrashed_post_comments', $post_id);
2542 }
2543
2544 /**
2545  * Retrieve the list of categories for a post.
2546  *
2547  * Compatibility layer for themes and plugins. Also an easy layer of abstraction
2548  * away from the complexity of the taxonomy layer.
2549  *
2550  * @since 2.1.0
2551  *
2552  * @uses wp_get_object_terms() Retrieves the categories. Args details can be found here.
2553  *
2554  * @param int $post_id Optional. The Post ID.
2555  * @param array $args Optional. Overwrite the defaults.
2556  * @return array
2557  */
2558 function wp_get_post_categories( $post_id = 0, $args = array() ) {
2559         $post_id = (int) $post_id;
2560
2561         $defaults = array('fields' => 'ids');
2562         $args = wp_parse_args( $args, $defaults );
2563
2564         $cats = wp_get_object_terms($post_id, 'category', $args);
2565         return $cats;
2566 }
2567
2568 /**
2569  * Retrieve the tags for a post.
2570  *
2571  * There is only one default for this function, called 'fields' and by default
2572  * is set to 'all'. There are other defaults that can be overridden in
2573  * {@link wp_get_object_terms()}.
2574  *
2575  * @package WordPress
2576  * @subpackage Post
2577  * @since 2.3.0
2578  *
2579  * @uses wp_get_object_terms() Gets the tags for returning. Args can be found here
2580  *
2581  * @param int $post_id Optional. The Post ID
2582  * @param array $args Optional. Overwrite the defaults
2583  * @return array List of post tags.
2584  */
2585 function wp_get_post_tags( $post_id = 0, $args = array() ) {
2586         return wp_get_post_terms( $post_id, 'post_tag', $args);
2587 }
2588
2589 /**
2590  * Retrieve the terms for a post.
2591  *
2592  * There is only one default for this function, called 'fields' and by default
2593  * is set to 'all'. There are other defaults that can be overridden in
2594  * {@link wp_get_object_terms()}.
2595  *
2596  * @package WordPress
2597  * @subpackage Post
2598  * @since 2.8.0
2599  *
2600  * @uses wp_get_object_terms() Gets the tags for returning. Args can be found here
2601  *
2602  * @param int $post_id Optional. The Post ID
2603  * @param string $taxonomy The taxonomy for which to retrieve terms. Defaults to post_tag.
2604  * @param array $args Optional. Overwrite the defaults
2605  * @return array List of post tags.
2606  */
2607 function wp_get_post_terms( $post_id = 0, $taxonomy = 'post_tag', $args = array() ) {
2608         $post_id = (int) $post_id;
2609
2610         $defaults = array('fields' => 'all');
2611         $args = wp_parse_args( $args, $defaults );
2612
2613         $tags = wp_get_object_terms($post_id, $taxonomy, $args);
2614
2615         return $tags;
2616 }
2617
2618 /**
2619  * Retrieve number of recent posts.
2620  *
2621  * @since 1.0.0
2622  * @uses wp_parse_args()
2623  * @uses get_posts()
2624  *
2625  * @param string $deprecated Deprecated.
2626  * @param array $args Optional. Overrides defaults.
2627  * @param string $output Optional.
2628  * @return unknown.
2629  */
2630 function wp_get_recent_posts( $args = array(), $output = ARRAY_A ) {
2631
2632         if ( is_numeric( $args ) ) {
2633                 _deprecated_argument( __FUNCTION__, '3.1', __( 'Passing an integer number of posts is deprecated. Pass an array of arguments instead.' ) );
2634                 $args = array( 'numberposts' => absint( $args ) );
2635         }
2636
2637         // Set default arguments
2638         $defaults = array(
2639                 'numberposts' => 10, 'offset' => 0,
2640                 'category' => 0, 'orderby' => 'post_date',
2641                 'order' => 'DESC', 'include' => '',
2642                 'exclude' => '', 'meta_key' => '',
2643                 'meta_value' =>'', 'post_type' => 'post', 'post_status' => 'draft, publish, future, pending, private',
2644                 'suppress_filters' => true
2645         );
2646
2647         $r = wp_parse_args( $args, $defaults );
2648
2649         $results = get_posts( $r );
2650
2651         // Backward compatibility. Prior to 3.1 expected posts to be returned in array
2652         if ( ARRAY_A == $output ){
2653                 foreach( $results as $key => $result ) {
2654                         $results[$key] = get_object_vars( $result );
2655                 }
2656                 return $results ? $results : array();
2657         }
2658
2659         return $results ? $results : false;
2660
2661 }
2662
2663 /**
2664  * Insert a post.
2665  *
2666  * If the $postarr parameter has 'ID' set to a value, then post will be updated.
2667  *
2668  * You can set the post date manually, but setting the values for 'post_date'
2669  * and 'post_date_gmt' keys. You can close the comments or open the comments by
2670  * setting the value for 'comment_status' key.
2671  *
2672  * The defaults for the parameter $postarr are:
2673  *     'post_status'   - Default is 'draft'.
2674  *     'post_type'     - Default is 'post'.
2675  *     'post_author'   - Default is current user ID ($user_ID). The ID of the user who added the post.
2676  *     'ping_status'   - Default is the value in 'default_ping_status' option.
2677  *                       Whether the attachment can accept pings.
2678  *     'post_parent'   - Default is 0. Set this for the post it belongs to, if any.
2679  *     'menu_order'    - Default is 0. The order it is displayed.
2680  *     'to_ping'       - Whether to ping.
2681  *     'pinged'        - Default is empty string.
2682  *     'post_password' - Default is empty string. The password to access the attachment.
2683  *     'guid'          - Global Unique ID for referencing the attachment.
2684  *     'post_content_filtered' - Post content filtered.
2685  *     'post_excerpt'  - Post excerpt.
2686  *
2687  * @since 1.0.0
2688  * @uses $wpdb
2689  * @uses $user_ID
2690  * @uses do_action() Calls 'pre_post_update' on post ID if this is an update.
2691  * @uses do_action() Calls 'edit_post' action on post ID and post data if this is an update.
2692  * @uses do_action() Calls 'save_post' and 'wp_insert_post' on post id and post data just before returning.
2693  * @uses apply_filters() Calls 'wp_insert_post_data' passing $data, $postarr prior to database update or insert.
2694  * @uses wp_transition_post_status()
2695  *
2696  * @param array $postarr Elements that make up post to insert.
2697  * @param bool $wp_error Optional. Allow return of WP_Error on failure.
2698  * @return int|WP_Error The value 0 or WP_Error on failure. The post ID on success.
2699  */
2700 function wp_insert_post($postarr, $wp_error = false) {
2701         global $wpdb, $user_ID;
2702
2703         $defaults = array('post_status' => 'draft', 'post_type' => 'post', 'post_author' => $user_ID,
2704                 'ping_status' => get_option('default_ping_status'), 'post_parent' => 0,
2705                 'menu_order' => 0, 'to_ping' =>  '', 'pinged' => '', 'post_password' => '',
2706                 'guid' => '', 'post_content_filtered' => '', 'post_excerpt' => '', 'import_id' => 0,
2707                 'post_content' => '', 'post_title' => '');
2708
2709         $postarr = wp_parse_args($postarr, $defaults);
2710
2711         unset( $postarr[ 'filter' ] );
2712
2713         $postarr = sanitize_post($postarr, 'db');
2714
2715         // export array as variables
2716         extract($postarr, EXTR_SKIP);
2717
2718         // Are we updating or creating?
2719         $update = false;
2720         if ( !empty($ID) ) {
2721                 $update = true;
2722                 $previous_status = get_post_field('post_status', $ID);
2723         } else {
2724                 $previous_status = 'new';
2725         }
2726
2727         $maybe_empty = ! $post_content && ! $post_title && ! $post_excerpt && post_type_supports( $post_type, 'editor' )
2728                 && post_type_supports( $post_type, 'title' ) && post_type_supports( $post_type, 'excerpt' );
2729         if ( apply_filters( 'wp_insert_post_empty_content', $maybe_empty, $postarr ) ) {
2730                 if ( $wp_error )
2731                         return new WP_Error( 'empty_content', __( 'Content, title, and excerpt are empty.' ) );
2732                 else
2733                         return 0;
2734         }
2735
2736         if ( empty($post_type) )
2737                 $post_type = 'post';
2738
2739         if ( empty($post_status) )
2740                 $post_status = 'draft';
2741
2742         if ( !empty($post_category) )
2743                 $post_category = array_filter($post_category); // Filter out empty terms
2744
2745         // Make sure we set a valid category.
2746         if ( empty($post_category) || 0 == count($post_category) || !is_array($post_category) ) {
2747                 // 'post' requires at least one category.
2748                 if ( 'post' == $post_type && 'auto-draft' != $post_status )
2749                         $post_category = array( get_option('default_category') );
2750                 else
2751                         $post_category = array();
2752         }
2753
2754         if ( empty($post_author) )
2755                 $post_author = $user_ID;
2756
2757         $post_ID = 0;
2758
2759         // Get the post ID and GUID
2760         if ( $update ) {
2761                 $post_ID = (int) $ID;
2762                 $guid = get_post_field( 'guid', $post_ID );
2763                 $post_before = get_post($post_ID);
2764         }
2765
2766         // Don't allow contributors to set the post slug for pending review posts
2767         if ( 'pending' == $post_status && !current_user_can( 'publish_posts' ) )
2768                 $post_name = '';
2769
2770         // Create a valid post name. Drafts and pending posts are allowed to have an empty
2771         // post name.
2772         if ( empty($post_name) ) {
2773                 if ( !in_array( $post_status, array( 'draft', 'pending', 'auto-draft' ) ) )
2774                         $post_name = sanitize_title($post_title);
2775                 else
2776                         $post_name = '';
2777         } else {
2778                 // On updates, we need to check to see if it's using the old, fixed sanitization context.
2779                 $check_name = sanitize_title( $post_name, '', 'old-save' );
2780                 if ( $update && strtolower( urlencode( $post_name ) ) == $check_name && get_post_field( 'post_name', $ID ) == $check_name )
2781                         $post_name = $check_name;
2782                 else // new post, or slug has changed.
2783                         $post_name = sanitize_title($post_name);
2784         }
2785
2786         // If the post date is empty (due to having been new or a draft) and status is not 'draft' or 'pending', set date to now
2787         if ( empty($post_date) || '0000-00-00 00:00:00' == $post_date )
2788                 $post_date = current_time('mysql');
2789
2790                 // validate the date
2791                 $mm = substr( $post_date, 5, 2 );
2792                 $jj = substr( $post_date, 8, 2 );
2793                 $aa = substr( $post_date, 0, 4 );
2794                 $valid_date = wp_checkdate( $mm, $jj, $aa, $post_date );
2795                 if ( !$valid_date ) {
2796                         if ( $wp_error )
2797                                 return new WP_Error( 'invalid_date', __( 'Whoops, the provided date is invalid.' ) );
2798                         else
2799                                 return 0;
2800                 }
2801
2802         if ( empty($post_date_gmt) || '0000-00-00 00:00:00' == $post_date_gmt ) {
2803                 if ( !in_array( $post_status, array( 'draft', 'pending', 'auto-draft' ) ) )
2804                         $post_date_gmt = get_gmt_from_date($post_date);
2805                 else
2806                         $post_date_gmt = '0000-00-00 00:00:00';
2807         }
2808
2809         if ( $update || '0000-00-00 00:00:00' == $post_date ) {
2810                 $post_modified     = current_time( 'mysql' );
2811                 $post_modified_gmt = current_time( 'mysql', 1 );
2812         } else {
2813                 $post_modified     = $post_date;
2814                 $post_modified_gmt = $post_date_gmt;
2815         }
2816
2817         if ( 'publish' == $post_status ) {
2818                 $now = gmdate('Y-m-d H:i:59');
2819                 if ( mysql2date('U', $post_date_gmt, false) > mysql2date('U', $now, false) )
2820                         $post_status = 'future';
2821         } elseif( 'future' == $post_status ) {
2822                 $now = gmdate('Y-m-d H:i:59');
2823                 if ( mysql2date('U', $post_date_gmt, false) <= mysql2date('U', $now, false) )
2824                         $post_status = 'publish';
2825         }
2826
2827         if ( empty($comment_status) ) {
2828                 if ( $update )
2829                         $comment_status = 'closed';
2830                 else
2831                         $comment_status = get_option('default_comment_status');
2832         }
2833         if ( empty($ping_status) )
2834                 $ping_status = get_option('default_ping_status');
2835
2836         if ( isset($to_ping) )
2837                 $to_ping = sanitize_trackback_urls( $to_ping );
2838         else
2839                 $to_ping = '';
2840
2841         if ( ! isset($pinged) )
2842                 $pinged = '';
2843
2844         if ( isset($post_parent) )
2845                 $post_parent = (int) $post_parent;
2846         else
2847                 $post_parent = 0;
2848
2849         // Check the post_parent to see if it will cause a hierarchy loop
2850         $post_parent = apply_filters( 'wp_insert_post_parent', $post_parent, $post_ID, compact( array_keys( $postarr ) ), $postarr );
2851
2852         if ( isset($menu_order) )
2853                 $menu_order = (int) $menu_order;
2854         else
2855                 $menu_order = 0;
2856
2857         if ( !isset($post_password) || 'private' == $post_status )
2858                 $post_password = '';
2859
2860         $post_name = wp_unique_post_slug($post_name, $post_ID, $post_status, $post_type, $post_parent);
2861
2862         // expected_slashed (everything!)
2863         $data = compact( array( 'post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_content_filtered', 'post_title', 'post_excerpt', 'post_status', 'post_type', 'comment_status', 'ping_status', 'post_password', 'post_name', 'to_ping', 'pinged', 'post_modified', 'post_modified_gmt', 'post_parent', 'menu_order', 'guid' ) );
2864         $data = apply_filters('wp_insert_post_data', $data, $postarr);
2865         $data = stripslashes_deep( $data );
2866         $where = array( 'ID' => $post_ID );
2867
2868         if ( $update ) {
2869                 do_action( 'pre_post_update', $post_ID );
2870                 if ( false === $wpdb->update( $wpdb->posts, $data, $where ) ) {
2871                         if ( $wp_error )
2872                                 return new WP_Error('db_update_error', __('Could not update post in the database'), $wpdb->last_error);
2873                         else
2874                                 return 0;
2875                 }
2876         } else {
2877                 if ( isset($post_mime_type) )
2878                         $data['post_mime_type'] = stripslashes( $post_mime_type ); // This isn't in the update
2879                 // If there is a suggested ID, use it if not already present
2880                 if ( !empty($import_id) ) {
2881                         $import_id = (int) $import_id;
2882                         if ( ! $wpdb->get_var( $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE ID = %d", $import_id) ) ) {
2883                                 $data['ID'] = $import_id;
2884                         }
2885                 }
2886                 if ( false === $wpdb->insert( $wpdb->posts, $data ) ) {
2887                         if ( $wp_error )
2888                                 return new WP_Error('db_insert_error', __('Could not insert post into the database'), $wpdb->last_error);
2889                         else
2890                                 return 0;
2891                 }
2892                 $post_ID = (int) $wpdb->insert_id;
2893
2894                 // use the newly generated $post_ID
2895                 $where = array( 'ID' => $post_ID );
2896         }
2897
2898         if ( empty($data['post_name']) && !in_array( $data['post_status'], array( 'draft', 'pending', 'auto-draft' ) ) ) {
2899                 $data['post_name'] = sanitize_title($data['post_title'], $post_ID);
2900                 $wpdb->update( $wpdb->posts, array( 'post_name' => $data['post_name'] ), $where );
2901         }
2902
2903         if ( is_object_in_taxonomy($post_type, 'category') )
2904                 wp_set_post_categories( $post_ID, $post_category );
2905
2906         if ( isset( $tags_input ) && is_object_in_taxonomy($post_type, 'post_tag') )
2907                 wp_set_post_tags( $post_ID, $tags_input );
2908
2909         // new-style support for all custom taxonomies
2910         if ( !empty($tax_input) ) {
2911                 foreach ( $tax_input as $taxonomy => $tags ) {
2912                         $taxonomy_obj = get_taxonomy($taxonomy);
2913                         if ( is_array($tags) ) // array = hierarchical, string = non-hierarchical.
2914                                 $tags = array_filter($tags);
2915                         if ( current_user_can($taxonomy_obj->cap->assign_terms) )
2916                                 wp_set_post_terms( $post_ID, $tags, $taxonomy );
2917                 }
2918         }
2919
2920         $current_guid = get_post_field( 'guid', $post_ID );
2921
2922         // Set GUID
2923         if ( !$update && '' == $current_guid )
2924                 $wpdb->update( $wpdb->posts, array( 'guid' => get_permalink( $post_ID ) ), $where );
2925
2926         clean_post_cache( $post_ID );
2927
2928         $post = get_post($post_ID);
2929
2930         if ( !empty($page_template) && 'page' == $data['post_type'] ) {
2931                 $post->page_template = $page_template;
2932                 $page_templates = wp_get_theme()->get_page_templates();
2933                 if ( 'default' != $page_template && ! isset( $page_templates[ $page_template ] ) ) {
2934                         if ( $wp_error )
2935                                 return new WP_Error('invalid_page_template', __('The page template is invalid.'));
2936                         else
2937                                 return 0;
2938                 }
2939                 update_post_meta($post_ID, '_wp_page_template',  $page_template);
2940         }
2941
2942         wp_transition_post_status($data['post_status'], $previous_status, $post);
2943
2944         if ( $update ) {
2945                 do_action('edit_post', $post_ID, $post);
2946                 $post_after = get_post($post_ID);
2947                 do_action( 'post_updated', $post_ID, $post_after, $post_before);
2948         }
2949
2950         do_action('save_post', $post_ID, $post);
2951         do_action('wp_insert_post', $post_ID, $post);
2952
2953         return $post_ID;
2954 }
2955
2956 /**
2957  * Update a post with new post data.
2958  *
2959  * The date does not have to be set for drafts. You can set the date and it will
2960  * not be overridden.
2961  *
2962  * @since 1.0.0
2963  *
2964  * @param array|object $postarr Post data. Arrays are expected to be escaped, objects are not.
2965  * @param bool $wp_error Optional. Allow return of WP_Error on failure.
2966  * @return int|WP_Error The value 0 or WP_Error on failure. The post ID on success.
2967  */
2968 function wp_update_post( $postarr = array(), $wp_error = false ) {
2969         if ( is_object($postarr) ) {
2970                 // non-escaped post was passed
2971                 $postarr = get_object_vars($postarr);
2972                 $postarr = add_magic_quotes($postarr);
2973         }
2974
2975         // First, get all of the original fields
2976         $post = get_post($postarr['ID'], ARRAY_A);
2977
2978         // Escape data pulled from DB.
2979         $post = add_magic_quotes($post);
2980
2981         // Passed post category list overwrites existing category list if not empty.
2982         if ( isset($postarr['post_category']) && is_array($postarr['post_category'])
2983                          && 0 != count($postarr['post_category']) )
2984                 $post_cats = $postarr['post_category'];
2985         else
2986                 $post_cats = $post['post_category'];
2987
2988         // Drafts shouldn't be assigned a date unless explicitly done so by the user
2989         if ( isset( $post['post_status'] ) && in_array($post['post_status'], array('draft', 'pending', 'auto-draft')) && empty($postarr['edit_date']) &&
2990                          ('0000-00-00 00:00:00' == $post['post_date_gmt']) )
2991                 $clear_date = true;
2992         else
2993                 $clear_date = false;
2994
2995         // Merge old and new fields with new fields overwriting old ones.
2996         $postarr = array_merge($post, $postarr);
2997         $postarr['post_category'] = $post_cats;
2998         if ( $clear_date ) {
2999                 $postarr['post_date'] = current_time('mysql');
3000                 $postarr['post_date_gmt'] = '';
3001         }
3002
3003         if ($postarr['post_type'] == 'attachment')
3004                 return wp_insert_attachment($postarr);
3005
3006         return wp_insert_post( $postarr, $wp_error );
3007 }
3008
3009 /**
3010  * Publish a post by transitioning the post status.
3011  *
3012  * @since 2.1.0
3013  * @uses $wpdb
3014  * @uses do_action() Calls 'edit_post', 'save_post', and 'wp_insert_post' on post_id and post data.
3015  *
3016  * @param mixed $post Post ID or object.
3017  */
3018 function wp_publish_post( $post ) {
3019         global $wpdb;
3020
3021         if ( ! $post = get_post( $post ) )
3022                 return;
3023
3024         if ( 'publish' == $post->post_status )
3025                 return;
3026
3027         $wpdb->update( $wpdb->posts, array( 'post_status' => 'publish' ), array( 'ID' => $post->ID ) );
3028
3029         clean_post_cache( $post->ID );
3030
3031         $old_status = $post->post_status;
3032         $post->post_status = 'publish';
3033         wp_transition_post_status( 'publish', $old_status, $post );
3034
3035         do_action( 'edit_post', $post->ID, $post );
3036         do_action( 'save_post', $post->ID, $post );
3037         do_action( 'wp_insert_post', $post->ID, $post );
3038 }
3039
3040 /**
3041  * Publish future post and make sure post ID has future post status.
3042  *
3043  * Invoked by cron 'publish_future_post' event. This safeguard prevents cron
3044  * from publishing drafts, etc.
3045  *
3046  * @since 2.5.0
3047  *
3048  * @param int $post_id Post ID.
3049  * @return null Nothing is returned. Which can mean that no action is required or post was published.
3050  */
3051 function check_and_publish_future_post($post_id) {
3052
3053         $post = get_post($post_id);
3054
3055         if ( empty($post) )
3056                 return;
3057
3058         if ( 'future' != $post->post_status )
3059                 return;
3060
3061         $time = strtotime( $post->post_date_gmt . ' GMT' );
3062
3063         if ( $time > time() ) { // Uh oh, someone jumped the gun!
3064                 wp_clear_scheduled_hook( 'publish_future_post', array( $post_id ) ); // clear anything else in the system
3065                 wp_schedule_single_event( $time, 'publish_future_post', array( $post_id ) );
3066                 return;
3067         }
3068
3069         return wp_publish_post($post_id);
3070 }
3071
3072 /**
3073  * Computes a unique slug for the post, when given the desired slug and some post details.
3074  *
3075  * @since 2.8.0
3076  *
3077  * @global wpdb $wpdb
3078  * @global WP_Rewrite $wp_rewrite
3079  * @param string $slug the desired slug (post_name)
3080  * @param integer $post_ID
3081  * @param string $post_status no uniqueness checks are made if the post is still draft or pending
3082  * @param string $post_type
3083  * @param integer $post_parent
3084  * @return string unique slug for the post, based on $post_name (with a -1, -2, etc. suffix)
3085  */
3086 function wp_unique_post_slug( $slug, $post_ID, $post_status, $post_type, $post_parent ) {
3087         if ( in_array( $post_status, array( 'draft', 'pending', 'auto-draft' ) ) )
3088                 return $slug;
3089
3090         global $wpdb, $wp_rewrite;
3091
3092         $original_slug = $slug;
3093
3094         $feeds = $wp_rewrite->feeds;
3095         if ( ! is_array( $feeds ) )
3096                 $feeds = array();
3097
3098         $hierarchical_post_types = get_post_types( array('hierarchical' => true) );
3099         if ( 'attachment' == $post_type ) {
3100                 // Attachment slugs must be unique across all types.
3101                 $check_sql = "SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND ID != %d LIMIT 1";
3102                 $post_name_check = $wpdb->get_var( $wpdb->prepare( $check_sql, $slug, $post_ID ) );
3103
3104                 if ( $post_name_check || in_array( $slug, $feeds ) || apply_filters( 'wp_unique_post_slug_is_bad_attachment_slug', false, $slug ) ) {
3105                         $suffix = 2;
3106                         do {
3107                                 $alt_post_name = substr ($slug, 0, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
3108                                 $post_name_check = $wpdb->get_var( $wpdb->prepare($check_sql, $alt_post_name, $post_ID ) );
3109                                 $suffix++;
3110                         } while ( $post_name_check );
3111                         $slug = $alt_post_name;
3112                 }
3113         } elseif ( in_array( $post_type, $hierarchical_post_types ) ) {
3114                 if ( 'nav_menu_item' == $post_type )
3115                         return $slug;
3116                 // Page slugs must be unique within their own trees. Pages are in a separate
3117                 // namespace than posts so page slugs are allowed to overlap post slugs.
3118                 $check_sql = "SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND post_type IN ( '" . implode( "', '", esc_sql( $hierarchical_post_types ) ) . "' ) AND ID != %d AND post_parent = %d LIMIT 1";
3119                 $post_name_check = $wpdb->get_var( $wpdb->prepare( $check_sql, $slug, $post_ID, $post_parent ) );
3120
3121                 if ( $post_name_check || in_array( $slug, $feeds ) || preg_match( "@^($wp_rewrite->pagination_base)?\d+$@", $slug )  || apply_filters( 'wp_unique_post_slug_is_bad_hierarchical_slug', false, $slug, $post_type, $post_parent ) ) {
3122                         $suffix = 2;
3123                         do {
3124                                 $alt_post_name = substr( $slug, 0, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
3125                                 $post_name_check = $wpdb->get_var( $wpdb->prepare( $check_sql, $alt_post_name, $post_ID, $post_parent ) );
3126                                 $suffix++;
3127                         } while ( $post_name_check );
3128                         $slug = $alt_post_name;
3129                 }
3130         } else {
3131                 // Post slugs must be unique across all posts.
3132                 $check_sql = "SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND post_type = %s AND ID != %d LIMIT 1";
3133                 $post_name_check = $wpdb->get_var( $wpdb->prepare( $check_sql, $slug, $post_type, $post_ID ) );
3134
3135                 if ( $post_name_check || in_array( $slug, $feeds ) || apply_filters( 'wp_unique_post_slug_is_bad_flat_slug', false, $slug, $post_type ) ) {
3136                         $suffix = 2;
3137                         do {
3138                                 $alt_post_name = substr( $slug, 0, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
3139                                 $post_name_check = $wpdb->get_var( $wpdb->prepare( $check_sql, $alt_post_name, $post_type, $post_ID ) );
3140                                 $suffix++;
3141                         } while ( $post_name_check );
3142                         $slug = $alt_post_name;
3143                 }
3144         }
3145
3146         return apply_filters( 'wp_unique_post_slug', $slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug );
3147 }
3148
3149 /**
3150  * Adds tags to a post.
3151  *
3152  * @uses wp_set_post_tags() Same first two parameters, but the last parameter is always set to true.
3153  *
3154  * @package WordPress
3155  * @subpackage Post
3156  * @since 2.3.0
3157  *
3158  * @param int $post_id Post ID
3159  * @param string $tags The tags to set for the post, separated by commas.
3160  * @return bool|null Will return false if $post_id is not an integer or is 0. Will return null otherwise
3161  */
3162 function wp_add_post_tags($post_id = 0, $tags = '') {
3163         return wp_set_post_tags($post_id, $tags, true);
3164 }
3165
3166 /**
3167  * Set the tags for a post.
3168  *
3169  * @since 2.3.0
3170  * @uses wp_set_object_terms() Sets the tags for the post.
3171  *
3172  * @param int $post_id Post ID.
3173  * @param string $tags The tags to set for the post, separated by commas.
3174  * @param bool $append If true, don't delete existing tags, just add on. If false, replace the tags with the new tags.
3175  * @return mixed Array of affected term IDs. WP_Error or false on failure.
3176  */
3177 function wp_set_post_tags( $post_id = 0, $tags = '', $append = false ) {
3178         return wp_set_post_terms( $post_id, $tags, 'post_tag', $append);
3179 }
3180
3181 /**
3182  * Set the terms for a post.
3183  *
3184  * @since 2.8.0
3185  * @uses wp_set_object_terms() Sets the tags for the post.
3186  *
3187  * @param int $post_id Post ID.
3188  * @param string $tags The tags to set for the post, separated by commas.
3189  * @param string $taxonomy Taxonomy name. Defaults to 'post_tag'.
3190  * @param bool $append If true, don't delete existing tags, just add on. If false, replace the tags with the new tags.
3191  * @return mixed Array of affected term IDs. WP_Error or false on failure.
3192  */
3193 function wp_set_post_terms( $post_id = 0, $tags = '', $taxonomy = 'post_tag', $append = false ) {
3194         $post_id = (int) $post_id;
3195
3196         if ( !$post_id )
3197                 return false;
3198
3199         if ( empty($tags) )
3200                 $tags = array();
3201
3202         if ( ! is_array( $tags ) ) {
3203                 $comma = _x( ',', 'tag delimiter' );
3204                 if ( ',' !== $comma )
3205                         $tags = str_replace( $comma, ',', $tags );
3206                 $tags = explode( ',', trim( $tags, " \n\t\r\0\x0B," ) );
3207         }
3208
3209         // Hierarchical taxonomies must always pass IDs rather than names so that children with the same
3210         // names but different parents aren't confused.
3211         if ( is_taxonomy_hierarchical( $taxonomy ) ) {
3212                 $tags = array_unique( array_map( 'intval', $tags ) );
3213         }
3214
3215         return wp_set_object_terms( $post_id, $tags, $taxonomy, $append );
3216 }
3217
3218 /**
3219  * Set categories for a post.
3220  *
3221  * If the post categories parameter is not set, then the default category is
3222  * going used.
3223  *
3224  * @since 2.1.0
3225  *
3226  * @param int $post_ID Post ID.
3227  * @param array $post_categories Optional. List of categories.
3228  * @return bool|mixed
3229  */
3230 function wp_set_post_categories($post_ID = 0, $post_categories = array()) {
3231         $post_ID = (int) $post_ID;
3232         $post_type = get_post_type( $post_ID );
3233         $post_status = get_post_status( $post_ID );
3234         // If $post_categories isn't already an array, make it one:
3235         if ( !is_array($post_categories) || empty($post_categories) ) {
3236                 if ( 'post' == $post_type && 'auto-draft' != $post_status )
3237                         $post_categories = array( get_option('default_category') );
3238                 else
3239                         $post_categories = array();
3240         } else if ( 1 == count($post_categories) && '' == reset($post_categories) ) {
3241                 return true;
3242         }
3243
3244         return wp_set_post_terms($post_ID, $post_categories, 'category');
3245 }
3246
3247 /**
3248  * Transition the post status of a post.
3249  *
3250  * Calls hooks to transition post status.
3251  *
3252  * The first is 'transition_post_status' with new status, old status, and post data.
3253  *
3254  * The next action called is 'OLDSTATUS_to_NEWSTATUS' the 'NEWSTATUS' is the
3255  * $new_status parameter and the 'OLDSTATUS' is $old_status parameter; it has the
3256  * post data.
3257  *
3258  * The final action is named 'NEWSTATUS_POSTTYPE', 'NEWSTATUS' is from the $new_status
3259  * parameter and POSTTYPE is post_type post data.
3260  *
3261  * @since 2.3.0
3262  * @link http://codex.wordpress.org/Post_Status_Transitions
3263  *
3264  * @uses do_action() Calls 'transition_post_status' on $new_status, $old_status and
3265  *  $post if there is a status change.
3266  * @uses do_action() Calls '{$old_status}_to_{$new_status}' on $post if there is a status change.
3267  * @uses do_action() Calls '{$new_status}_{$post->post_type}' on post ID and $post.
3268  *
3269  * @param string $new_status Transition to this post status.
3270  * @param string $old_status Previous post status.
3271  * @param object $post Post data.
3272  */
3273 function wp_transition_post_status($new_status, $old_status, $post) {
3274         do_action('transition_post_status', $new_status, $old_status, $post);
3275         do_action("{$old_status}_to_{$new_status}", $post);
3276         do_action("{$new_status}_{$post->post_type}", $post->ID, $post);
3277 }
3278
3279 //
3280 // Trackback and ping functions
3281 //
3282
3283 /**
3284  * Add a URL to those already pung.
3285  *
3286  * @since 1.5.0
3287  * @uses $wpdb
3288  *
3289  * @param int $post_id Post ID.
3290  * @param string $uri Ping URI.
3291  * @return int How many rows were updated.
3292  */
3293 function add_ping($post_id, $uri) {
3294         global $wpdb;
3295         $pung = $wpdb->get_var( $wpdb->prepare( "SELECT pinged FROM $wpdb->posts WHERE ID = %d", $post_id ));
3296         $pung = trim($pung);
3297         $pung = preg_split('/\s/', $pung);
3298         $pung[] = $uri;
3299         $new = implode("\n", $pung);
3300         $new = apply_filters('add_ping', $new);
3301         // expected_slashed ($new)
3302         $new = stripslashes($new);
3303         return $wpdb->update( $wpdb->posts, array( 'pinged' => $new ), array( 'ID' => $post_id ) );
3304 }
3305
3306 /**
3307  * Retrieve enclosures already enclosed for a post.
3308  *
3309  * @since 1.5.0
3310  * @uses $wpdb
3311  *
3312  * @param int $post_id Post ID.
3313  * @return array List of enclosures
3314  */
3315 function get_enclosed($post_id) {
3316         $custom_fields = get_post_custom( $post_id );
3317         $pung = array();
3318         if ( !is_array( $custom_fields ) )
3319                 return $pung;
3320
3321         foreach ( $custom_fields as $key => $val ) {
3322                 if ( 'enclosure' != $key || !is_array( $val ) )
3323                         continue;
3324                 foreach( $val as $enc ) {
3325                         $enclosure = explode( "\n", $enc );
3326                         $pung[] = trim( $enclosure[ 0 ] );
3327                 }
3328         }
3329         $pung = apply_filters('get_enclosed', $pung, $post_id);
3330         return $pung;
3331 }
3332
3333 /**
3334  * Retrieve URLs already pinged for a post.
3335  *
3336  * @since 1.5.0
3337  * @uses $wpdb
3338  *
3339  * @param int $post_id Post ID.
3340  * @return array
3341  */
3342 function get_pung($post_id) {
3343         global $wpdb;
3344         $pung = $wpdb->get_var( $wpdb->prepare( "SELECT pinged FROM $wpdb->posts WHERE ID = %d", $post_id ));
3345         $pung = trim($pung);
3346         $pung = preg_split('/\s/', $pung);
3347         $pung = apply_filters('get_pung', $pung);
3348         return $pung;
3349 }
3350
3351 /**
3352  * Retrieve URLs that need to be pinged.
3353  *
3354  * @since 1.5.0
3355  * @uses $wpdb
3356  *
3357  * @param int $post_id Post ID
3358  * @return array
3359  */
3360 function get_to_ping($post_id) {
3361         global $wpdb;
3362         $to_ping = $wpdb->get_var( $wpdb->prepare( "SELECT to_ping FROM $wpdb->posts WHERE ID = %d", $post_id ));
3363         $to_ping = sanitize_trackback_urls( $to_ping );
3364         $to_ping = preg_split('/\s/', $to_ping, -1, PREG_SPLIT_NO_EMPTY);
3365         $to_ping = apply_filters('get_to_ping',  $to_ping);
3366         return $to_ping;
3367 }
3368
3369 /**
3370  * Do trackbacks for a list of URLs.
3371  *
3372  * @since 1.0.0
3373  *
3374  * @param string $tb_list Comma separated list of URLs
3375  * @param int $post_id Post ID
3376  */
3377 function trackback_url_list($tb_list, $post_id) {
3378         if ( ! empty( $tb_list ) ) {
3379                 // get post data
3380                 $postdata = get_post($post_id, ARRAY_A);
3381
3382                 // import postdata as variables
3383                 extract($postdata, EXTR_SKIP);
3384
3385                 // form an excerpt
3386                 $excerpt = strip_tags($post_excerpt ? $post_excerpt : $post_content);
3387
3388                 if (strlen($excerpt) > 255) {
3389                         $excerpt = substr($excerpt,0,252) . '...';
3390                 }
3391
3392                 $trackback_urls = explode(',', $tb_list);
3393                 foreach( (array) $trackback_urls as $tb_url) {
3394                         $tb_url = trim($tb_url);
3395                         trackback($tb_url, stripslashes($post_title), $excerpt, $post_id);
3396                 }
3397         }
3398 }
3399
3400 //
3401 // Page functions
3402 //
3403
3404 /**
3405  * Get a list of page IDs.
3406  *
3407  * @since 2.0.0
3408  * @uses $wpdb
3409  *
3410  * @return array List of page IDs.
3411  */
3412 function get_all_page_ids() {
3413         global $wpdb;
3414
3415         $page_ids = wp_cache_get('all_page_ids', 'posts');
3416         if ( ! is_array( $page_ids ) ) {
3417                 $page_ids = $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_type = 'page'");
3418                 wp_cache_add('all_page_ids', $page_ids, 'posts');
3419         }
3420
3421         return $page_ids;
3422 }
3423
3424 /**
3425  * Retrieves page data given a page ID or page object.
3426  *
3427  * Use get_post() instead of get_page().
3428  *
3429  * @since 1.5.1
3430  * @deprecated 3.5.0
3431  *
3432  * @param mixed $page Page object or page ID. Passed by reference.
3433  * @param string $output What to output. OBJECT, ARRAY_A, or ARRAY_N.
3434  * @param string $filter How the return value should be filtered.
3435  * @return WP_Post|null WP_Post on success or null on failure
3436  */
3437 function get_page( $page, $output = OBJECT, $filter = 'raw') {
3438         return get_post( $page, $output, $filter );
3439 }
3440
3441 /**
3442  * Retrieves a page given its path.
3443  *
3444  * @since 2.1.0
3445  * @uses $wpdb
3446  *
3447  * @param string $page_path Page path
3448  * @param string $output Optional. Output type. OBJECT, ARRAY_N, or ARRAY_A. Default OBJECT.
3449  * @param string $post_type Optional. Post type. Default page.
3450  * @return WP_Post|null WP_Post on success or null on failure
3451  */
3452 function get_page_by_path($page_path, $output = OBJECT, $post_type = 'page') {
3453         global $wpdb;
3454
3455         $page_path = rawurlencode(urldecode($page_path));
3456         $page_path = str_replace('%2F', '/', $page_path);
3457         $page_path = str_replace('%20', ' ', $page_path);
3458         $parts = explode( '/', trim( $page_path, '/' ) );
3459         $parts = array_map( 'esc_sql', $parts );
3460         $parts = array_map( 'sanitize_title_for_query', $parts );
3461
3462         $in_string = "'". implode( "','", $parts ) . "'";
3463         $post_type_sql = $post_type;
3464         $wpdb->escape_by_ref( $post_type_sql );
3465         $pages = $wpdb->get_results( "SELECT ID, post_name, post_parent, post_type FROM $wpdb->posts WHERE post_name IN ($in_string) AND (post_type = '$post_type_sql' OR post_type = 'attachment')", OBJECT_K );
3466
3467         $revparts = array_reverse( $parts );
3468
3469         $foundid = 0;
3470         foreach ( (array) $pages as $page ) {
3471                 if ( $page->post_name == $revparts[0] ) {
3472                         $count = 0;
3473                         $p = $page;
3474                         while ( $p->post_parent != 0 && isset( $pages[ $p->post_parent ] ) ) {
3475                                 $count++;
3476                                 $parent = $pages[ $p->post_parent ];
3477                                 if ( ! isset( $revparts[ $count ] ) || $parent->post_name != $revparts[ $count ] )
3478                                         break;
3479                                 $p = $parent;
3480                         }
3481
3482                         if ( $p->post_parent == 0 && $count+1 == count( $revparts ) && $p->post_name == $revparts[ $count ] ) {
3483                                 $foundid = $page->ID;
3484                                 if ( $page->post_type == $post_type )
3485                                         break;
3486                         }
3487                 }
3488         }
3489
3490         if ( $foundid )
3491                 return get_post( $foundid, $output );
3492
3493         return null;
3494 }
3495
3496 /**
3497  * Retrieve a page given its title.
3498  *
3499  * @since 2.1.0
3500  * @uses $wpdb
3501  *
3502  * @param string $page_title Page title
3503  * @param string $output Optional. Output type. OBJECT, ARRAY_N, or ARRAY_A. Default OBJECT.
3504  * @param string $post_type Optional. Post type. Default page.
3505  * @return WP_Post|null WP_Post on success or null on failure
3506  */
3507 function get_page_by_title($page_title, $output = OBJECT, $post_type = 'page' ) {
3508         global $wpdb;
3509         $page = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_title = %s AND post_type= %s", $page_title, $post_type ) );
3510         if ( $page )
3511                 return get_post( $page, $output );
3512
3513         return null;
3514 }
3515
3516 /**
3517  * Retrieve child pages from list of pages matching page ID.
3518  *
3519  * Matches against the pages parameter against the page ID. Also matches all
3520  * children for the same to retrieve all children of a page. Does not make any
3521  * SQL queries to get the children.
3522  *
3523  * @since 1.5.1
3524  *
3525  * @param int $page_id Page ID.
3526  * @param array $pages List of pages' objects.
3527  * @return array
3528  */
3529 function get_page_children($page_id, $pages) {
3530         $page_list = array();
3531         foreach ( (array) $pages as $page ) {
3532                 if ( $page->post_parent == $page_id ) {
3533                         $page_list[] = $page;
3534                         if ( $children = get_page_children($page->ID, $pages) )
3535                                 $page_list = array_merge($page_list, $children);
3536                 }
3537         }
3538         return $page_list;
3539 }
3540
3541 /**
3542  * Order the pages with children under parents in a flat list.
3543  *
3544  * It uses auxiliary structure to hold parent-children relationships and
3545  * runs in O(N) complexity
3546  *
3547  * @since 2.0.0
3548  *
3549  * @param array $pages Posts array.
3550  * @param int $page_id Parent page ID.
3551  * @return array A list arranged by hierarchy. Children immediately follow their parents.
3552  */
3553 function get_page_hierarchy( &$pages, $page_id = 0 ) {
3554         if ( empty( $pages ) ) {
3555                 $result = array();
3556                 return $result;
3557         }
3558
3559         $children = array();
3560         foreach ( (array) $pages as $p ) {
3561                 $parent_id = intval( $p->post_parent );
3562                 $children[ $parent_id ][] = $p;
3563         }
3564
3565         $result = array();
3566         _page_traverse_name( $page_id, $children, $result );
3567
3568         return $result;
3569 }
3570
3571 /**
3572  * function to traverse and return all the nested children post names of a root page.
3573  * $children contains parent-children relations
3574  *
3575  * @since 2.9.0
3576  */
3577 function _page_traverse_name( $page_id, &$children, &$result ){
3578         if ( isset( $children[ $page_id ] ) ){
3579                 foreach( (array)$children[ $page_id ] as $child ) {
3580                         $result[ $child->ID ] = $child->post_name;
3581                         _page_traverse_name( $child->ID, $children, $result );
3582                 }
3583         }
3584 }
3585
3586 /**
3587  * Builds URI for a page.
3588  *
3589  * Sub pages will be in the "directory" under the parent page post name.
3590  *
3591  * @since 1.5.0
3592  *
3593  * @param mixed $page Page object or page ID.
3594  * @return string Page URI.
3595  */
3596 function get_page_uri($page) {
3597         $page = get_post( $page );
3598
3599         $uri = $page->post_name;
3600
3601         foreach ( $page->ancestors as $parent ) {
3602                 $uri = get_post( $parent )->post_name . "/" . $uri;
3603         }
3604
3605         return $uri;
3606 }
3607
3608 /**
3609  * Retrieve a list of pages.
3610  *
3611  * The defaults that can be overridden are the following: 'child_of',
3612  * 'sort_order', 'sort_column', 'post_title', 'hierarchical', 'exclude',
3613  * 'include', 'meta_key', 'meta_value','authors', 'number', and 'offset'.
3614  *
3615  * @since 1.5.0
3616  * @uses $wpdb
3617  *
3618  * @param mixed $args Optional. Array or string of options that overrides defaults.
3619  * @return array List of pages matching defaults or $args
3620  */
3621 function get_pages($args = '') {
3622         global $wpdb;
3623
3624         $pages = false;
3625
3626         $defaults = array(
3627                 'child_of' => 0, 'sort_order' => 'ASC',
3628                 'sort_column' => 'post_title', 'hierarchical' => 1,
3629                 'exclude' => array(), 'include' => array(),
3630                 'meta_key' => '', 'meta_value' => '',
3631                 'authors' => '', 'parent' => -1, 'exclude_tree' => '',
3632                 'number' => '', 'offset' => 0,
3633                 'post_type' => 'page', 'post_status' => 'publish',
3634         );
3635
3636         $r = wp_parse_args( $args, $defaults );
3637         extract( $r, EXTR_SKIP );
3638         $number = (int) $number;
3639         $offset = (int) $offset;
3640
3641         // Make sure the post type is hierarchical
3642         $hierarchical_post_types = get_post_types( array( 'hierarchical' => true ) );
3643         if ( !in_array( $post_type, $hierarchical_post_types ) )
3644                 return $pages;
3645
3646         // Make sure we have a valid post status
3647         if ( !is_array( $post_status ) )
3648                 $post_status = explode( ',', $post_status );
3649         if ( array_diff( $post_status, get_post_stati() ) )
3650                 return $pages;
3651
3652         $cache = array();
3653         $key = md5( serialize( compact(array_keys($defaults)) ) );
3654         if ( $cache = wp_cache_get( 'get_pages', 'posts' ) ) {
3655                 if ( is_array($cache) && isset( $cache[ $key ] ) && is_array( $cache[ $key ] ) ) {
3656                         // Convert to WP_Post instances
3657                         $pages = array_map( 'get_post', $cache[ $key ] );
3658                         $pages = apply_filters( 'get_pages', $pages, $r );
3659                         return $pages;
3660                 }
3661         }
3662
3663         if ( !is_array($cache) )
3664                 $cache = array();
3665
3666         $inclusions = '';
3667         if ( !empty($include) ) {
3668                 $child_of = 0; //ignore child_of, parent, exclude, meta_key, and meta_value params if using include
3669                 $parent = -1;
3670                 $exclude = '';
3671                 $meta_key = '';
3672                 $meta_value = '';
3673                 $hierarchical = false;
3674                 $incpages = wp_parse_id_list( $include );
3675                 if ( ! empty( $incpages ) ) {
3676                         foreach ( $incpages as $incpage ) {
3677                                 if (empty($inclusions))
3678                                         $inclusions = $wpdb->prepare(' AND ( ID = %d ', $incpage);
3679                                 else
3680                                         $inclusions .= $wpdb->prepare(' OR ID = %d ', $incpage);
3681                         }
3682                 }
3683         }
3684         if (!empty($inclusions))
3685                 $inclusions .= ')';
3686
3687         $exclusions = '';
3688         if ( !empty($exclude) ) {
3689                 $expages = wp_parse_id_list( $exclude );
3690                 if ( ! empty( $expages ) ) {
3691                         foreach ( $expages as $expage ) {
3692                                 if (empty($exclusions))
3693                                         $exclusions = $wpdb->prepare(' AND ( ID <> %d ', $expage);
3694                                 else
3695                                         $exclusions .= $wpdb->prepare(' AND ID <> %d ', $expage);
3696                         }
3697                 }
3698         }
3699         if (!empty($exclusions))
3700                 $exclusions .= ')';
3701
3702         $author_query = '';
3703         if (!empty($authors)) {
3704                 $post_authors = preg_split('/[\s,]+/',$authors);
3705
3706                 if ( ! empty( $post_authors ) ) {
3707                         foreach ( $post_authors as $post_author ) {
3708                                 //Do we have an author id or an author login?
3709                                 if ( 0 == intval($post_author) ) {
3710                                         $post_author = get_user_by('login', $post_author);
3711                                         if ( empty($post_author) )
3712                                                 continue;
3713                                         if ( empty($post_author->ID) )
3714                                                 continue;
3715                                         $post_author = $post_author->ID;
3716                                 }
3717
3718                                 if ( '' == $author_query )
3719                                         $author_query = $wpdb->prepare(' post_author = %d ', $post_author);
3720                                 else
3721                                         $author_query .= $wpdb->prepare(' OR post_author = %d ', $post_author);
3722                         }
3723                         if ( '' != $author_query )
3724                                 $author_query = " AND ($author_query)";
3725                 }
3726         }
3727
3728         $join = '';
3729         $where = "$exclusions $inclusions ";
3730         if ( ! empty( $meta_key ) || ! empty( $meta_value ) ) {
3731                 $join = " LEFT JOIN $wpdb->postmeta ON ( $wpdb->posts.ID = $wpdb->postmeta.post_id )";
3732
3733                 // meta_key and meta_value might be slashed
3734                 $meta_key = stripslashes($meta_key);
3735                 $meta_value = stripslashes($meta_value);
3736                 if ( ! empty( $meta_key ) )
3737                         $where .= $wpdb->prepare(" AND $wpdb->postmeta.meta_key = %s", $meta_key);
3738                 if ( ! empty( $meta_value ) )
3739                         $where .= $wpdb->prepare(" AND $wpdb->postmeta.meta_value = %s", $meta_value);
3740
3741         }
3742
3743         if ( $parent >= 0 )
3744                 $where .= $wpdb->prepare(' AND post_parent = %d ', $parent);
3745
3746         if ( 1 == count( $post_status ) ) {
3747                 $where_post_type = $wpdb->prepare( "post_type = %s AND post_status = %s", $post_type, array_shift( $post_status ) );
3748         } else {
3749                 $post_status = implode( "', '", $post_status );
3750                 $where_post_type = $wpdb->prepare( "post_type = %s AND post_status IN ('$post_status')", $post_type );
3751         }
3752
3753         $orderby_array = array();
3754         $allowed_keys = array('author', 'post_author', 'date', 'post_date', 'title', 'post_title', 'name', 'post_name', 'modified',
3755                                                   'post_modified', 'modified_gmt', 'post_modified_gmt', 'menu_order', 'parent', 'post_parent',
3756                                                   'ID', 'rand', 'comment_count');
3757         foreach ( explode( ',', $sort_column ) as $orderby ) {
3758                 $orderby = trim( $orderby );
3759                 if ( !in_array( $orderby, $allowed_keys ) )
3760                         continue;
3761
3762                 switch ( $orderby ) {
3763                         case 'menu_order':
3764                                 break;
3765                         case 'ID':
3766                                 $orderby = "$wpdb->posts.ID";
3767                                 break;
3768                         case 'rand':
3769                                 $orderby = 'RAND()';
3770                                 break;
3771                         case 'comment_count':
3772                                 $orderby = "$wpdb->posts.comment_count";
3773                                 break;
3774                         default:
3775                                 if ( 0 === strpos( $orderby, 'post_' ) )
3776                                         $orderby = "$wpdb->posts." . $orderby;
3777                                 else
3778                                         $orderby = "$wpdb->posts.post_" . $orderby;
3779                 }
3780
3781                 $orderby_array[] = $orderby;
3782
3783         }
3784         $sort_column = ! empty( $orderby_array ) ? implode( ',', $orderby_array ) : "$wpdb->posts.post_title";
3785
3786         $sort_order = strtoupper( $sort_order );
3787         if ( '' !== $sort_order && !in_array( $sort_order, array( 'ASC', 'DESC' ) ) )
3788                 $sort_order = 'ASC';
3789
3790         $query = "SELECT * FROM $wpdb->posts $join WHERE ($where_post_type) $where ";
3791         $query .= $author_query;
3792         $query .= " ORDER BY " . $sort_column . " " . $sort_order ;
3793
3794         if ( !empty($number) )
3795                 $query .= ' LIMIT ' . $offset . ',' . $number;
3796
3797         $pages = $wpdb->get_results($query);
3798
3799         if ( empty($pages) ) {
3800                 $pages = apply_filters('get_pages', array(), $r);
3801                 return $pages;
3802         }
3803
3804         // Sanitize before caching so it'll only get done once
3805         $num_pages = count($pages);
3806         for ($i = 0; $i < $num_pages; $i++) {
3807                 $pages[$i] = sanitize_post($pages[$i], 'raw');
3808         }
3809
3810         // Update cache.
3811         update_post_cache( $pages );
3812
3813         if ( $child_of || $hierarchical )
3814                 $pages = get_page_children($child_of, $pages);
3815
3816         if ( !empty($exclude_tree) ) {
3817                 $exclude = (int) $exclude_tree;
3818                 $children = get_page_children($exclude, $pages);
3819                 $excludes = array();
3820                 foreach ( $children as $child )
3821                         $excludes[] = $child->ID;
3822                 $excludes[] = $exclude;
3823                 $num_pages = count($pages);
3824                 for ( $i = 0; $i < $num_pages; $i++ ) {
3825                         if ( in_array($pages[$i]->ID, $excludes) )
3826                                 unset($pages[$i]);
3827                 }
3828         }
3829
3830         $cache[ $key ] = $pages;
3831         wp_cache_set( 'get_pages', $cache, 'posts' );
3832
3833         // Convert to WP_Post instances
3834         $pages = array_map( 'get_post', $pages );
3835
3836         $pages = apply_filters('get_pages', $pages, $r);
3837
3838         return $pages;
3839 }
3840
3841 //
3842 // Attachment functions
3843 //
3844
3845 /**
3846  * Check if the attachment URI is local one and is really an attachment.
3847  *
3848  * @since 2.0.0
3849  *
3850  * @param string $url URL to check
3851  * @return bool True on success, false on failure.
3852  */
3853 function is_local_attachment($url) {
3854         if (strpos($url, home_url()) === false)
3855                 return false;
3856         if (strpos($url, home_url('/?attachment_id=')) !== false)
3857                 return true;
3858         if ( $id = url_to_postid($url) ) {
3859                 $post = get_post($id);
3860                 if ( 'attachment' == $post->post_type )
3861                         return true;
3862         }
3863         return false;
3864 }
3865
3866 /**
3867  * Insert an attachment.
3868  *
3869  * If you set the 'ID' in the $object parameter, it will mean that you are
3870  * updating and attempt to update the attachment. You can also set the
3871  * attachment name or title by setting the key 'post_name' or 'post_title'.
3872  *
3873  * You can set the dates for the attachment manually by setting the 'post_date'
3874  * and 'post_date_gmt' keys' values.
3875  *
3876  * By default, the comments will use the default settings for whether the
3877  * comments are allowed. You can close them manually or keep them open by
3878  * setting the value for the 'comment_status' key.
3879  *
3880  * The $object parameter can have the following:
3881  *     'post_status'   - Default is 'draft'. Can not be overridden, set the same as parent post.
3882  *     'post_type'     - Default is 'post', will be set to attachment. Can not override.
3883  *     'post_author'   - Default is current user ID. The ID of the user, who added the attachment.
3884  *     'ping_status'   - Default is the value in default ping status option. Whether the attachment
3885  *                       can accept pings.
3886  *     'post_parent'   - Default is 0. Can use $parent parameter or set this for the post it belongs
3887  *                       to, if any.
3888  *     'menu_order'    - Default is 0. The order it is displayed.
3889  *     'to_ping'       - Whether to ping.
3890  *     'pinged'        - Default is empty string.
3891  *     'post_password' - Default is empty string. The password to access the attachment.
3892  *     'guid'          - Global Unique ID for referencing the attachment.
3893  *     'post_content_filtered' - Attachment post content filtered.
3894  *     'post_excerpt'  - Attachment excerpt.
3895  *
3896  * @since 2.0.0
3897  * @uses $wpdb
3898  * @uses $user_ID
3899  * @uses do_action() Calls 'edit_attachment' on $post_ID if this is an update.
3900  * @uses do_action() Calls 'add_attachment' on $post_ID if this is not an update.
3901  *
3902  * @param string|array $object Arguments to override defaults.
3903  * @param string $file Optional filename.
3904  * @param int $parent Parent post ID.
3905  * @return int Attachment ID.
3906  */
3907 function wp_insert_attachment($object, $file = false, $parent = 0) {
3908         global $wpdb, $user_ID;
3909
3910         $defaults = array('post_status' => 'inherit', 'post_type' => 'post', 'post_author' => $user_ID,
3911                 'ping_status' => get_option('default_ping_status'), 'post_parent' => 0,
3912                 'menu_order' => 0, 'to_ping' =>  '', 'pinged' => '', 'post_password' => '',
3913                 'guid' => '', 'post_content_filtered' => '', 'post_excerpt' => '', 'import_id' => 0, 'context' => '');
3914
3915         $object = wp_parse_args($object, $defaults);
3916         if ( !empty($parent) )
3917                 $object['post_parent'] = $parent;
3918
3919         unset( $object[ 'filter' ] );
3920
3921         $object = sanitize_post($object, 'db');
3922
3923         // export array as variables
3924         extract($object, EXTR_SKIP);
3925
3926         if ( empty($post_author) )
3927                 $post_author = $user_ID;
3928
3929         $post_type = 'attachment';
3930
3931         if ( ! in_array( $post_status, array( 'inherit', 'private' ) ) )
3932                 $post_status = 'inherit';
3933
3934         if ( !empty($post_category) )
3935                 $post_category = array_filter($post_category); // Filter out empty terms
3936
3937         // Make sure we set a valid category.
3938         if ( empty($post_category) || 0 == count($post_category) || !is_array($post_category) ) {
3939                 $post_category = array();
3940         }
3941
3942         // Are we updating or creating?
3943         if ( !empty($ID) ) {
3944                 $update = true;
3945                 $post_ID = (int) $ID;
3946         } else {
3947                 $update = false;
3948                 $post_ID = 0;
3949         }
3950
3951         // Create a valid post name.
3952         if ( empty($post_name) )
3953                 $post_name = sanitize_title($post_title);
3954         else
3955                 $post_name = sanitize_title($post_name);
3956
3957         // expected_slashed ($post_name)
3958         $post_name = wp_unique_post_slug($post_name, $post_ID, $post_status, $post_type, $post_parent);
3959
3960         if ( empty($post_date) )
3961                 $post_date = current_time('mysql');
3962         if ( empty($post_date_gmt) )
3963                 $post_date_gmt = current_time('mysql', 1);
3964
3965         if ( empty($post_modified) )
3966                 $post_modified = $post_date;
3967         if ( empty($post_modified_gmt) )
3968                 $post_modified_gmt = $post_date_gmt;
3969
3970         if ( empty($comment_status) ) {
3971                 if ( $update )
3972                         $comment_status = 'closed';
3973                 else
3974                         $comment_status = get_option('default_comment_status');
3975         }
3976         if ( empty($ping_status) )
3977                 $ping_status = get_option('default_ping_status');
3978
3979         if ( isset($to_ping) )
3980                 $to_ping = preg_replace('|\s+|', "\n", $to_ping);
3981         else
3982                 $to_ping = '';
3983
3984         if ( isset($post_parent) )
3985                 $post_parent = (int) $post_parent;
3986         else
3987                 $post_parent = 0;
3988
3989         if ( isset($menu_order) )
3990                 $menu_order = (int) $menu_order;
3991         else
3992                 $menu_order = 0;
3993
3994         if ( !isset($post_password) )
3995                 $post_password = '';
3996
3997         if ( ! isset($pinged) )
3998                 $pinged = '';
3999
4000         // expected_slashed (everything!)
4001         $data = compact( array( 'post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_content_filtered', 'post_title', 'post_excerpt', 'post_status', 'post_type', 'comment_status', 'ping_status', 'post_password', 'post_name', 'to_ping', 'pinged', 'post_modified', 'post_modified_gmt', 'post_parent', 'menu_order', 'post_mime_type', 'guid' ) );
4002         $data = stripslashes_deep( $data );
4003
4004         if ( $update ) {
4005                 $wpdb->update( $wpdb->posts, $data, array( 'ID' => $post_ID ) );
4006         } else {
4007                 // If there is a suggested ID, use it if not already present
4008                 if ( !empty($import_id) ) {
4009                         $import_id = (int) $import_id;
4010                         if ( ! $wpdb->get_var( $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE ID = %d", $import_id) ) ) {
4011                                 $data['ID'] = $import_id;
4012                         }
4013                 }
4014
4015                 $wpdb->insert( $wpdb->posts, $data );
4016                 $post_ID = (int) $wpdb->insert_id;
4017         }
4018
4019         if ( empty($post_name) ) {
4020                 $post_name = sanitize_title($post_title, $post_ID);
4021                 $wpdb->update( $wpdb->posts, compact("post_name"), array( 'ID' => $post_ID ) );
4022         }
4023
4024         if ( is_object_in_taxonomy($post_type, 'category') )
4025                 wp_set_post_categories( $post_ID, $post_category );
4026
4027         if ( isset( $tags_input ) && is_object_in_taxonomy($post_type, 'post_tag') )
4028                 wp_set_post_tags( $post_ID, $tags_input );
4029
4030         // support for all custom taxonomies
4031         if ( !empty($tax_input) ) {
4032                 foreach ( $tax_input as $taxonomy => $tags ) {
4033                         $taxonomy_obj = get_taxonomy($taxonomy);
4034                         if ( is_array($tags) ) // array = hierarchical, string = non-hierarchical.
4035                                 $tags = array_filter($tags);
4036                         if ( current_user_can($taxonomy_obj->cap->assign_terms) )
4037                                 wp_set_post_terms( $post_ID, $tags, $taxonomy );
4038                 }
4039         }
4040
4041         if ( $file )
4042                 update_attached_file( $post_ID, $file );
4043
4044         clean_post_cache( $post_ID );
4045
4046         if ( ! empty( $context ) )
4047                 add_post_meta( $post_ID, '_wp_attachment_context', $context, true );
4048
4049         if ( $update) {
4050                 do_action('edit_attachment', $post_ID);
4051         } else {
4052                 do_action('add_attachment', $post_ID);
4053         }
4054
4055         return $post_ID;
4056 }
4057
4058 /**
4059  * Trashes or deletes an attachment.
4060  *
4061  * When an attachment is permanently deleted, the file will also be removed.
4062  * Deletion removes all post meta fields, taxonomy, comments, etc. associated
4063  * with the attachment (except the main post).
4064  *
4065  * The attachment is moved to the trash instead of permanently deleted unless trash
4066  * for media is disabled, item is already in the trash, or $force_delete is true.
4067  *
4068  * @since 2.0.0
4069  * @uses $wpdb
4070  * @uses do_action() Calls 'delete_attachment' hook on Attachment ID.
4071  *
4072  * @param int $post_id Attachment ID.
4073  * @param bool $force_delete Whether to bypass trash and force deletion. Defaults to false.
4074  * @return mixed False on failure. Post data on success.
4075  */
4076 function wp_delete_attachment( $post_id, $force_delete = false ) {
4077         global $wpdb;
4078
4079         if ( !$post = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->posts WHERE ID = %d", $post_id) ) )
4080                 return $post;
4081
4082         if ( 'attachment' != $post->post_type )
4083                 return false;
4084
4085         if ( !$force_delete && EMPTY_TRASH_DAYS && MEDIA_TRASH && 'trash' != $post->post_status )
4086                 return wp_trash_post( $post_id );
4087
4088         delete_post_meta($post_id, '_wp_trash_meta_status');
4089         delete_post_meta($post_id, '_wp_trash_meta_time');
4090
4091         $meta = wp_get_attachment_metadata( $post_id );
4092         $backup_sizes = get_post_meta( $post->ID, '_wp_attachment_backup_sizes', true );
4093         $file = get_attached_file( $post_id );
4094
4095         $intermediate_sizes = array();
4096         foreach ( get_intermediate_image_sizes() as $size ) {
4097                 if ( $intermediate = image_get_intermediate_size( $post_id, $size ) )
4098                         $intermediate_sizes[] = $intermediate;
4099         }
4100
4101         if ( is_multisite() )
4102                 delete_transient( 'dirsize_cache' );
4103
4104         do_action('delete_attachment', $post_id);
4105
4106         wp_delete_object_term_relationships($post_id, array('category', 'post_tag'));
4107         wp_delete_object_term_relationships($post_id, get_object_taxonomies($post->post_type));
4108
4109         delete_metadata( 'post', null, '_thumbnail_id', $post_id, true ); // delete all for any posts.
4110
4111         $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = %d", $post_id ));
4112         foreach ( $comment_ids as $comment_id )
4113                 wp_delete_comment( $comment_id, true );
4114
4115         $post_meta_ids = $wpdb->get_col( $wpdb->prepare( "SELECT meta_id FROM $wpdb->postmeta WHERE post_id = %d ", $post_id ));
4116         foreach ( $post_meta_ids as $mid )
4117                 delete_metadata_by_mid( 'post', $mid );
4118
4119         do_action( 'delete_post', $post_id );
4120         $wpdb->delete( $wpdb->posts, array( 'ID' => $post_id ) );
4121         do_action( 'deleted_post', $post_id );
4122
4123         $uploadpath = wp_upload_dir();
4124
4125         if ( ! empty($meta['thumb']) ) {
4126                 // Don't delete the thumb if another attachment uses it
4127                 if (! $wpdb->get_row( $wpdb->prepare( "SELECT meta_id FROM $wpdb->postmeta WHERE meta_key = '_wp_attachment_metadata' AND meta_value LIKE %s AND post_id <> %d", '%' . $meta['thumb'] . '%', $post_id)) ) {
4128                         $thumbfile = str_replace(basename($file), $meta['thumb'], $file);
4129                         $thumbfile = apply_filters('wp_delete_file', $thumbfile);
4130                         @ unlink( path_join($uploadpath['basedir'], $thumbfile) );
4131                 }
4132         }
4133
4134         // remove intermediate and backup images if there are any
4135         foreach ( $intermediate_sizes as $intermediate ) {
4136                 $intermediate_file = apply_filters( 'wp_delete_file', $intermediate['path'] );
4137                 @ unlink( path_join($uploadpath['basedir'], $intermediate_file) );
4138         }
4139
4140         if ( is_array($backup_sizes) ) {
4141                 foreach ( $backup_sizes as $size ) {
4142                         $del_file = path_join( dirname($meta['file']), $size['file'] );
4143                         $del_file = apply_filters('wp_delete_file', $del_file);
4144                         @ unlink( path_join($uploadpath['basedir'], $del_file) );
4145                 }
4146         }
4147
4148         $file = apply_filters('wp_delete_file', $file);
4149
4150         if ( ! empty($file) )
4151                 @ unlink($file);
4152
4153         clean_post_cache( $post );
4154
4155         return $post;
4156 }
4157
4158 /**
4159  * Retrieve attachment meta field for attachment ID.
4160  *
4161  * @since 2.1.0
4162  *
4163  * @param int $post_id Attachment ID
4164  * @param bool $unfiltered Optional, default is false. If true, filters are not run.
4165  * @return string|bool Attachment meta field. False on failure.
4166  */
4167 function wp_get_attachment_metadata( $post_id = 0, $unfiltered = false ) {
4168         $post_id = (int) $post_id;
4169         if ( !$post = get_post( $post_id ) )
4170                 return false;
4171
4172         $data = get_post_meta( $post->ID, '_wp_attachment_metadata', true );
4173
4174         if ( $unfiltered )
4175                 return $data;
4176
4177         return apply_filters( 'wp_get_attachment_metadata', $data, $post->ID );
4178 }
4179
4180 /**
4181  * Update metadata for an attachment.
4182  *
4183  * @since 2.1.0
4184  *
4185  * @param int $post_id Attachment ID.
4186  * @param array $data Attachment data.
4187  * @return int
4188  */
4189 function wp_update_attachment_metadata( $post_id, $data ) {
4190         $post_id = (int) $post_id;
4191         if ( !$post = get_post( $post_id ) )
4192                 return false;
4193
4194         if ( $data = apply_filters( 'wp_update_attachment_metadata', $data, $post->ID ) )
4195                 return update_post_meta( $post->ID, '_wp_attachment_metadata', $data );
4196         else
4197                 return delete_post_meta( $post->ID, '_wp_attachment_metadata' );
4198 }
4199
4200 /**
4201  * Retrieve the URL for an attachment.
4202  *
4203  * @since 2.1.0
4204  *
4205  * @param int $post_id Attachment ID.
4206  * @return string
4207  */
4208 function wp_get_attachment_url( $post_id = 0 ) {
4209         $post_id = (int) $post_id;
4210         if ( !$post = get_post( $post_id ) )
4211                 return false;
4212
4213         if ( 'attachment' != $post->post_type )
4214                 return false;
4215
4216         $url = '';
4217         if ( $file = get_post_meta( $post->ID, '_wp_attached_file', true) ) { //Get attached file
4218                 if ( ($uploads = wp_upload_dir()) && false === $uploads['error'] ) { //Get upload directory
4219                         if ( 0 === strpos($file, $uploads['basedir']) ) //Check that the upload base exists in the file location
4220                                 $url = str_replace($uploads['basedir'], $uploads['baseurl'], $file); //replace file location with url location
4221                         elseif ( false !== strpos($file, 'wp-content/uploads') )
4222                                 $url = $uploads['baseurl'] . substr( $file, strpos($file, 'wp-content/uploads') + 18 );
4223                         else
4224                                 $url = $uploads['baseurl'] . "/$file"; //Its a newly uploaded file, therefor $file is relative to the basedir.
4225                 }
4226         }
4227
4228         if ( empty($url) ) //If any of the above options failed, Fallback on the GUID as used pre-2.7, not recommended to rely upon this.
4229                 $url = get_the_guid( $post->ID );
4230
4231         $url = apply_filters( 'wp_get_attachment_url', $url, $post->ID );
4232
4233         if ( empty( $url ) )
4234                 return false;
4235
4236         return $url;
4237 }
4238
4239 /**
4240  * Retrieve thumbnail for an attachment.
4241  *
4242  * @since 2.1.0
4243  *
4244  * @param int $post_id Attachment ID.
4245  * @return mixed False on failure. Thumbnail file path on success.
4246  */
4247 function wp_get_attachment_thumb_file( $post_id = 0 ) {
4248         $post_id = (int) $post_id;
4249         if ( !$post = get_post( $post_id ) )
4250                 return false;
4251         if ( !is_array( $imagedata = wp_get_attachment_metadata( $post->ID ) ) )
4252                 return false;
4253
4254         $file = get_attached_file( $post->ID );
4255
4256         if ( !empty($imagedata['thumb']) && ($thumbfile = str_replace(basename($file), $imagedata['thumb'], $file)) && file_exists($thumbfile) )
4257                 return apply_filters( 'wp_get_attachment_thumb_file', $thumbfile, $post->ID );
4258         return false;
4259 }
4260
4261 /**
4262  * Retrieve URL for an attachment thumbnail.
4263  *
4264  * @since 2.1.0
4265  *
4266  * @param int $post_id Attachment ID
4267  * @return string|bool False on failure. Thumbnail URL on success.
4268  */
4269 function wp_get_attachment_thumb_url( $post_id = 0 ) {
4270         $post_id = (int) $post_id;
4271         if ( !$post = get_post( $post_id ) )
4272                 return false;
4273         if ( !$url = wp_get_attachment_url( $post->ID ) )
4274                 return false;
4275
4276         $sized = image_downsize( $post_id, 'thumbnail' );
4277         if ( $sized )
4278                 return $sized[0];
4279
4280         if ( !$thumb = wp_get_attachment_thumb_file( $post->ID ) )
4281                 return false;
4282
4283         $url = str_replace(basename($url), basename($thumb), $url);
4284
4285         return apply_filters( 'wp_get_attachment_thumb_url', $url, $post->ID );
4286 }
4287
4288 /**
4289  * Check if the attachment is an image.
4290  *
4291  * @since 2.1.0
4292  *
4293  * @param int $post_id Attachment ID
4294  * @return bool
4295  */
4296 function wp_attachment_is_image( $post_id = 0 ) {
4297         $post_id = (int) $post_id;
4298         if ( !$post = get_post( $post_id ) )
4299                 return false;
4300
4301         if ( !$file = get_attached_file( $post->ID ) )
4302                 return false;
4303
4304         $ext = preg_match('/\.([^.]+)$/', $file, $matches) ? strtolower($matches[1]) : false;
4305
4306         $image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png' );
4307
4308         if ( 'image/' == substr($post->post_mime_type, 0, 6) || $ext && 'import' == $post->post_mime_type && in_array($ext, $image_exts) )
4309                 return true;
4310         return false;
4311 }
4312
4313 /**
4314  * Retrieve the icon for a MIME type.
4315  *
4316  * @since 2.1.0
4317  *
4318  * @param string|int $mime MIME type or attachment ID.
4319  * @return string|bool
4320  */
4321 function wp_mime_type_icon( $mime = 0 ) {
4322         if ( !is_numeric($mime) )
4323                 $icon = wp_cache_get("mime_type_icon_$mime");
4324
4325         $post_id = 0;
4326         if ( empty($icon) ) {
4327                 $post_mimes = array();
4328                 if ( is_numeric($mime) ) {
4329                         $mime = (int) $mime;
4330                         if ( $post = get_post( $mime ) ) {
4331                                 $post_id = (int) $post->ID;
4332                                 $ext = preg_replace('/^.+?\.([^.]+)$/', '$1', $post->guid);
4333                                 if ( !empty($ext) ) {
4334                                         $post_mimes[] = $ext;
4335                                         if ( $ext_type = wp_ext2type( $ext ) )
4336                                                 $post_mimes[] = $ext_type;
4337                                 }
4338                                 $mime = $post->post_mime_type;
4339                         } else {
4340                                 $mime = 0;
4341                         }
4342                 } else {
4343                         $post_mimes[] = $mime;
4344                 }
4345
4346                 $icon_files = wp_cache_get('icon_files');
4347
4348                 if ( !is_array($icon_files) ) {
4349                         $icon_dir = apply_filters( 'icon_dir', ABSPATH . WPINC . '/images/crystal' );
4350                         $icon_dir_uri = apply_filters( 'icon_dir_uri', includes_url('images/crystal') );
4351                         $dirs = apply_filters( 'icon_dirs', array($icon_dir => $icon_dir_uri) );
4352                         $icon_files = array();
4353                         while ( $dirs ) {
4354                                 $keys = array_keys( $dirs );
4355                                 $dir = array_shift( $keys );
4356                                 $uri = array_shift($dirs);
4357                                 if ( $dh = opendir($dir) ) {
4358                                         while ( false !== $file = readdir($dh) ) {
4359                                                 $file = basename($file);
4360                                                 if ( substr($file, 0, 1) == '.' )
4361                                                         continue;
4362                                                 if ( !in_array(strtolower(substr($file, -4)), array('.png', '.gif', '.jpg') ) ) {
4363                                                         if ( is_dir("$dir/$file") )
4364                                                                 $dirs["$dir/$file"] = "$uri/$file";
4365                                                         continue;
4366                                                 }
4367                                                 $icon_files["$dir/$file"] = "$uri/$file";
4368                                         }
4369                                         closedir($dh);
4370                                 }
4371                         }
4372                         wp_cache_add( 'icon_files', $icon_files, 'default', 600 );
4373                 }
4374
4375                 // Icon basename - extension = MIME wildcard
4376                 foreach ( $icon_files as $file => $uri )
4377                         $types[ preg_replace('/^([^.]*).*$/', '$1', basename($file)) ] =& $icon_files[$file];
4378
4379                 if ( ! empty($mime) ) {
4380                         $post_mimes[] = substr($mime, 0, strpos($mime, '/'));
4381                         $post_mimes[] = substr($mime, strpos($mime, '/') + 1);
4382                         $post_mimes[] = str_replace('/', '_', $mime);
4383                 }
4384
4385                 $matches = wp_match_mime_types(array_keys($types), $post_mimes);
4386                 $matches['default'] = array('default');
4387
4388                 foreach ( $matches as $match => $wilds ) {
4389                         if ( isset($types[$wilds[0]])) {
4390                                 $icon = $types[$wilds[0]];
4391                                 if ( !is_numeric($mime) )
4392                                         wp_cache_add("mime_type_icon_$mime", $icon);
4393                                 break;
4394                         }
4395                 }
4396         }
4397
4398         return apply_filters( 'wp_mime_type_icon', $icon, $mime, $post_id ); // Last arg is 0 if function pass mime type.
4399 }
4400
4401 /**
4402  * Checked for changed slugs for published post objects and save the old slug.
4403  *
4404  * The function is used when a post object of any type is updated,
4405  * by comparing the current and previous post objects.
4406  *
4407  * If the slug was changed and not already part of the old slugs then it will be
4408  * added to the post meta field ('_wp_old_slug') for storing old slugs for that
4409  * post.
4410  *
4411  * The most logically usage of this function is redirecting changed post objects, so
4412  * that those that linked to an changed post will be redirected to the new post.
4413  *
4414  * @since 2.1.0
4415  *
4416  * @param int $post_id Post ID.
4417  * @param object $post The Post Object
4418  * @param object $post_before The Previous Post Object
4419  * @return int Same as $post_id
4420  */
4421 function wp_check_for_changed_slugs($post_id, $post, $post_before) {
4422         // dont bother if it hasnt changed
4423         if ( $post->post_name == $post_before->post_name )
4424                 return;
4425
4426         // we're only concerned with published, non-hierarchical objects
4427         if ( $post->post_status != 'publish' || is_post_type_hierarchical( $post->post_type ) )
4428                 return;
4429
4430         $old_slugs = (array) get_post_meta($post_id, '_wp_old_slug');
4431
4432         // if we haven't added this old slug before, add it now
4433         if ( !empty( $post_before->post_name ) && !in_array($post_before->post_name, $old_slugs) )
4434                 add_post_meta($post_id, '_wp_old_slug', $post_before->post_name);
4435
4436         // if the new slug was used previously, delete it from the list
4437         if ( in_array($post->post_name, $old_slugs) )
4438                 delete_post_meta($post_id, '_wp_old_slug', $post->post_name);
4439 }
4440
4441 /**
4442  * Retrieve the private post SQL based on capability.
4443  *
4444  * This function provides a standardized way to appropriately select on the
4445  * post_status of a post type. The function will return a piece of SQL code
4446  * that can be added to a WHERE clause; this SQL is constructed to allow all
4447  * published posts, and all private posts to which the user has access.
4448  *
4449  * @since 2.2.0
4450  *
4451  * @uses $user_ID
4452  *
4453  * @param string $post_type currently only supports 'post' or 'page'.
4454  * @return string SQL code that can be added to a where clause.
4455  */
4456 function get_private_posts_cap_sql( $post_type ) {
4457         return get_posts_by_author_sql( $post_type, false );
4458 }
4459
4460 /**
4461  * Retrieve the post SQL based on capability, author, and type.
4462  *
4463  * @see get_private_posts_cap_sql() for full description.
4464  *
4465  * @since 3.0.0
4466  * @param string $post_type Post type.
4467  * @param bool $full Optional. Returns a full WHERE statement instead of just an 'andalso' term.
4468  * @param int $post_author Optional. Query posts having a single author ID.
4469  * @param bool $public_only Optional. Only return public posts. Skips cap checks for $current_user.  Default is false.
4470  * @return string SQL WHERE code that can be added to a query.
4471  */
4472 function get_posts_by_author_sql( $post_type, $full = true, $post_author = null, $public_only = false ) {
4473         global $user_ID, $wpdb;
4474
4475         // Private posts
4476         $post_type_obj = get_post_type_object( $post_type );
4477         if ( ! $post_type_obj )
4478                 return $full ? 'WHERE 1 = 0' : ' 1 = 0 ';
4479
4480         // This hook is deprecated. Why you'd want to use it, I dunno.
4481         if ( ! $cap = apply_filters( 'pub_priv_sql_capability', '' ) )
4482                 $cap = $post_type_obj->cap->read_private_posts;
4483
4484         if ( $full ) {
4485                 if ( null === $post_author ) {
4486                         $sql = $wpdb->prepare( 'WHERE post_type = %s AND ', $post_type );
4487                 } else {
4488                         $sql = $wpdb->prepare( 'WHERE post_author = %d AND post_type = %s AND ', $post_author, $post_type );
4489                 }
4490         } else {
4491                 $sql = '';
4492         }
4493
4494         $sql .= "(post_status = 'publish'";
4495
4496         // Only need to check the cap if $public_only is false
4497         if ( false === $public_only ) {
4498                 if ( current_user_can( $cap ) ) {
4499                         // Does the user have the capability to view private posts? Guess so.
4500                         $sql .= " OR post_status = 'private'";
4501                 } elseif ( is_user_logged_in() ) {
4502                         // Users can view their own private posts.
4503                         $id = (int) $user_ID;
4504                         if ( null === $post_author || ! $full ) {
4505                                 $sql .= " OR post_status = 'private' AND post_author = $id";
4506                         } elseif ( $id == (int) $post_author ) {
4507                                 $sql .= " OR post_status = 'private'";
4508                         } // else none
4509                 } // else none
4510         }
4511
4512         $sql .= ')';
4513
4514         return $sql;
4515 }
4516
4517 /**
4518  * Retrieve the date that the last post was published.
4519  *
4520  * The server timezone is the default and is the difference between GMT and
4521  * server time. The 'blog' value is the date when the last post was posted. The
4522  * 'gmt' is when the last post was posted in GMT formatted date.
4523  *
4524  * @since 0.71
4525  *
4526  * @uses apply_filters() Calls 'get_lastpostdate' filter
4527  *
4528  * @param string $timezone The location to get the time. Can be 'gmt', 'blog', or 'server'.
4529  * @return string The date of the last post.
4530  */
4531 function get_lastpostdate($timezone = 'server') {
4532         return apply_filters( 'get_lastpostdate', _get_last_post_time( $timezone, 'date' ), $timezone );
4533 }
4534
4535 /**
4536  * Retrieve last post modified date depending on timezone.
4537  *
4538  * The server timezone is the default and is the difference between GMT and
4539  * server time. The 'blog' value is just when the last post was modified. The
4540  * 'gmt' is when the last post was modified in GMT time.
4541  *
4542  * @since 1.2.0
4543  * @uses apply_filters() Calls 'get_lastpostmodified' filter
4544  *
4545  * @param string $timezone The location to get the time. Can be 'gmt', 'blog', or 'server'.
4546  * @return string The date the post was last modified.
4547  */
4548 function get_lastpostmodified($timezone = 'server') {
4549         $lastpostmodified = _get_last_post_time( $timezone, 'modified' );
4550
4551         $lastpostdate = get_lastpostdate($timezone);
4552         if ( $lastpostdate > $lastpostmodified )
4553                 $lastpostmodified = $lastpostdate;
4554
4555         return apply_filters( 'get_lastpostmodified', $lastpostmodified, $timezone );
4556 }
4557
4558 /**
4559  * Retrieve latest post date data based on timezone.
4560  *
4561  * @access private
4562  * @since 3.1.0
4563  *
4564  * @param string $timezone The location to get the time. Can be 'gmt', 'blog', or 'server'.
4565  * @param string $field Field to check. Can be 'date' or 'modified'.
4566  * @return string The date.
4567  */
4568 function _get_last_post_time( $timezone, $field ) {
4569         global $wpdb;
4570
4571         if ( !in_array( $field, array( 'date', 'modified' ) ) )
4572                 return false;
4573
4574         $timezone = strtolower( $timezone );
4575
4576         $key = "lastpost{$field}:$timezone";
4577
4578         $date = wp_cache_get( $key, 'timeinfo' );
4579
4580         if ( !$date ) {
4581                 $add_seconds_server = date('Z');
4582
4583                 $post_types = get_post_types( array( 'public' => true ) );
4584                 array_walk( $post_types, array( &$wpdb, 'escape_by_ref' ) );
4585                 $post_types = "'" . implode( "', '", $post_types ) . "'";
4586
4587                 switch ( $timezone ) {
4588                         case 'gmt':
4589                                 $date = $wpdb->get_var("SELECT post_{$field}_gmt FROM $wpdb->posts WHERE post_status = 'publish' AND post_type IN ({$post_types}) ORDER BY post_{$field}_gmt DESC LIMIT 1");
4590                                 break;
4591                         case 'blog':
4592                                 $date = $wpdb->get_var("SELECT post_{$field} FROM $wpdb->posts WHERE post_status = 'publish' AND post_type IN ({$post_types}) ORDER BY post_{$field}_gmt DESC LIMIT 1");
4593                                 break;
4594                         case 'server':
4595                                 $date = $wpdb->get_var("SELECT DATE_ADD(post_{$field}_gmt, INTERVAL '$add_seconds_server' SECOND) FROM $wpdb->posts WHERE post_status = 'publish' AND post_type IN ({$post_types}) ORDER BY post_{$field}_gmt DESC LIMIT 1");
4596                                 break;
4597                 }
4598
4599                 if ( $date )
4600                         wp_cache_set( $key, $date, 'timeinfo' );
4601         }
4602
4603         return $date;
4604 }
4605
4606 /**
4607  * Updates posts in cache.
4608  *
4609  * @package WordPress
4610  * @subpackage Cache
4611  * @since 1.5.1
4612  *
4613  * @param array $posts Array of post objects
4614  */
4615 function update_post_cache( &$posts ) {
4616         if ( ! $posts )
4617                 return;
4618
4619         foreach ( $posts as $post )
4620                 wp_cache_add( $post->ID, $post, 'posts' );
4621 }
4622
4623 /**
4624  * Will clean the post in the cache.
4625  *
4626  * Cleaning means delete from the cache of the post. Will call to clean the term
4627  * object cache associated with the post ID.
4628  *
4629  * This function not run if $_wp_suspend_cache_invalidation is not empty. See
4630  * wp_suspend_cache_invalidation().
4631  *
4632  * @package WordPress
4633  * @subpackage Cache
4634  * @since 2.0.0
4635  *
4636  * @uses do_action() Calls 'clean_post_cache' on $id before adding children (if any).
4637  *
4638  * @param object|int $post The post object or ID to remove from the cache
4639  */
4640 function clean_post_cache( $post ) {
4641         global $_wp_suspend_cache_invalidation, $wpdb;
4642
4643         if ( ! empty( $_wp_suspend_cache_invalidation ) )
4644                 return;
4645
4646         $post = get_post( $post );
4647         if ( empty( $post ) )
4648                 return;
4649
4650         wp_cache_delete( $post->ID, 'posts' );
4651         wp_cache_delete( $post->ID, 'post_meta' );
4652
4653         clean_object_term_cache( $post->ID, $post->post_type );
4654
4655         wp_cache_delete( 'wp_get_archives', 'general' );
4656
4657         do_action( 'clean_post_cache', $post->ID, $post );
4658
4659         if ( is_post_type_hierarchical( $post->post_type ) )
4660                 wp_cache_delete( 'get_pages', 'posts' );
4661
4662         if ( 'page' == $post->post_type ) {
4663                 wp_cache_delete( 'all_page_ids', 'posts' );
4664                 do_action( 'clean_page_cache', $post->ID );
4665         }
4666 }
4667
4668 /**
4669  * Call major cache updating functions for list of Post objects.
4670  *
4671  * @package WordPress
4672  * @subpackage Cache
4673  * @since 1.5.0
4674  *
4675  * @uses $wpdb
4676  * @uses update_post_cache()
4677  * @uses update_object_term_cache()
4678  * @uses update_postmeta_cache()
4679  *
4680  * @param array $posts Array of Post objects
4681  * @param string $post_type The post type of the posts in $posts. Default is 'post'.
4682  * @param bool $update_term_cache Whether to update the term cache. Default is true.
4683  * @param bool $update_meta_cache Whether to update the meta cache. Default is true.
4684  */
4685 function update_post_caches(&$posts, $post_type = 'post', $update_term_cache = true, $update_meta_cache = true) {
4686         // No point in doing all this work if we didn't match any posts.
4687         if ( !$posts )
4688                 return;
4689
4690         update_post_cache($posts);
4691
4692         $post_ids = array();
4693         foreach ( $posts as $post )
4694                 $post_ids[] = $post->ID;
4695
4696         if ( ! $post_type )
4697                 $post_type = 'any';
4698
4699         if ( $update_term_cache ) {
4700                 if ( is_array($post_type) ) {
4701                         $ptypes = $post_type;
4702                 } elseif ( 'any' == $post_type ) {
4703                         // Just use the post_types in the supplied posts.
4704                         foreach ( $posts as $post )
4705                                 $ptypes[] = $post->post_type;
4706                         $ptypes = array_unique($ptypes);
4707                 } else {
4708                         $ptypes = array($post_type);
4709                 }
4710
4711                 if ( ! empty($ptypes) )
4712                         update_object_term_cache($post_ids, $ptypes);
4713         }
4714
4715         if ( $update_meta_cache )
4716                 update_postmeta_cache($post_ids);
4717 }
4718
4719 /**
4720  * Updates metadata cache for list of post IDs.
4721  *
4722  * Performs SQL query to retrieve the metadata for the post IDs and updates the
4723  * metadata cache for the posts. Therefore, the functions, which call this
4724  * function, do not need to perform SQL queries on their own.
4725  *
4726  * @package WordPress
4727  * @subpackage Cache
4728  * @since 2.1.0
4729  *
4730  * @uses $wpdb
4731  *
4732  * @param array $post_ids List of post IDs.
4733  * @return bool|array Returns false if there is nothing to update or an array of metadata.
4734  */
4735 function update_postmeta_cache($post_ids) {
4736         return update_meta_cache('post', $post_ids);
4737 }
4738
4739 /**
4740  * Will clean the attachment in the cache.
4741  *
4742  * Cleaning means delete from the cache. Optionally will clean the term
4743  * object cache associated with the attachment ID.
4744  *
4745  * This function will not run if $_wp_suspend_cache_invalidation is not empty. See
4746  * wp_suspend_cache_invalidation().
4747  *
4748  * @package WordPress
4749  * @subpackage Cache
4750  * @since 3.0.0
4751  *
4752  * @uses do_action() Calls 'clean_attachment_cache' on $id.
4753  *
4754  * @param int $id The attachment ID in the cache to clean
4755  * @param bool $clean_terms optional. Whether to clean terms cache
4756  */
4757 function clean_attachment_cache($id, $clean_terms = false) {
4758         global $_wp_suspend_cache_invalidation;
4759
4760         if ( !empty($_wp_suspend_cache_invalidation) )
4761                 return;
4762
4763         $id = (int) $id;
4764
4765         wp_cache_delete($id, 'posts');
4766         wp_cache_delete($id, 'post_meta');
4767
4768         if ( $clean_terms )
4769                 clean_object_term_cache($id, 'attachment');
4770
4771         do_action('clean_attachment_cache', $id);
4772 }
4773
4774 //
4775 // Hooks
4776 //
4777
4778 /**
4779  * Hook for managing future post transitions to published.
4780  *
4781  * @since 2.3.0
4782  * @access private
4783  * @uses $wpdb
4784  * @uses do_action() Calls 'private_to_published' on post ID if this is a 'private_to_published' call.
4785  * @uses wp_clear_scheduled_hook() with 'publish_future_post' and post ID.
4786  *
4787  * @param string $new_status New post status
4788  * @param string $old_status Previous post status
4789  * @param object $post Object type containing the post information
4790  */
4791 function _transition_post_status($new_status, $old_status, $post) {
4792         global $wpdb;
4793
4794         if ( $old_status != 'publish' && $new_status == 'publish' ) {
4795                 // Reset GUID if transitioning to publish and it is empty
4796                 if ( '' == get_the_guid($post->ID) )
4797                         $wpdb->update( $wpdb->posts, array( 'guid' => get_permalink( $post->ID ) ), array( 'ID' => $post->ID ) );
4798                 do_action('private_to_published', $post->ID);  // Deprecated, use private_to_publish
4799         }
4800
4801         // If published posts changed clear the lastpostmodified cache
4802         if ( 'publish' == $new_status || 'publish' == $old_status) {
4803                 foreach ( array( 'server', 'gmt', 'blog' ) as $timezone ) {
4804                         wp_cache_delete( "lastpostmodified:$timezone", 'timeinfo' );
4805                         wp_cache_delete( "lastpostdate:$timezone", 'timeinfo' );
4806                 }
4807         }
4808
4809         // Always clears the hook in case the post status bounced from future to draft.
4810         wp_clear_scheduled_hook('publish_future_post', array( $post->ID ) );
4811 }
4812
4813 /**
4814  * Hook used to schedule publication for a post marked for the future.
4815  *
4816  * The $post properties used and must exist are 'ID' and 'post_date_gmt'.
4817  *
4818  * @since 2.3.0
4819  * @access private
4820  *
4821  * @param int $deprecated Not used. Can be set to null. Never implemented.
4822  *   Not marked as deprecated with _deprecated_argument() as it conflicts with
4823  *   wp_transition_post_status() and the default filter for _future_post_hook().
4824  * @param object $post Object type containing the post information
4825  */
4826 function _future_post_hook( $deprecated = '', $post ) {
4827         wp_clear_scheduled_hook( 'publish_future_post', array( $post->ID ) );
4828         wp_schedule_single_event( strtotime( get_gmt_from_date( $post->post_date ) . ' GMT') , 'publish_future_post', array( $post->ID ) );
4829 }
4830
4831 /**
4832  * Hook to schedule pings and enclosures when a post is published.
4833  *
4834  * @since 2.3.0
4835  * @access private
4836  * @uses $wpdb
4837  * @uses XMLRPC_REQUEST constant.
4838  * @uses do_action() Calls 'xmlprc_publish_post' on post ID if XMLRPC_REQUEST is defined.
4839  *
4840  * @param int $post_id The ID in the database table of the post being published
4841  */
4842 function _publish_post_hook($post_id) {
4843         global $wpdb;
4844
4845         if ( defined('XMLRPC_REQUEST') )
4846                 do_action('xmlrpc_publish_post', $post_id);
4847
4848         if ( defined('WP_IMPORTING') )
4849                 return;
4850
4851         if ( get_option('default_pingback_flag') )
4852                 add_post_meta( $post_id, '_pingme', '1' );
4853         add_post_meta( $post_id, '_encloseme', '1' );
4854
4855         wp_schedule_single_event(time(), 'do_pings');
4856 }
4857
4858 /**
4859  * Determines which fields of posts are to be saved in revisions.
4860  *
4861  * Does two things. If passed a post *array*, it will return a post array ready
4862  * to be inserted into the posts table as a post revision. Otherwise, returns
4863  * an array whose keys are the post fields to be saved for post revisions.
4864  *
4865  * @package WordPress
4866  * @subpackage Post_Revisions
4867  * @since 2.6.0
4868  * @access private
4869  * @uses apply_filters() Calls '_wp_post_revision_fields' on 'title', 'content' and 'excerpt' fields.
4870  *
4871  * @param array $post Optional a post array to be processed for insertion as a post revision.
4872  * @param bool $autosave optional Is the revision an autosave?
4873  * @return array Post array ready to be inserted as a post revision or array of fields that can be versioned.
4874  */
4875 function _wp_post_revision_fields( $post = null, $autosave = false ) {
4876         static $fields = false;
4877
4878         if ( !$fields ) {
4879                 // Allow these to be versioned
4880                 $fields = array(
4881                         'post_title' => __( 'Title' ),
4882                         'post_content' => __( 'Content' ),
4883                         'post_excerpt' => __( 'Excerpt' ),
4884                 );
4885
4886                 // Runs only once
4887                 $fields = apply_filters( '_wp_post_revision_fields', $fields );
4888
4889                 // WP uses these internally either in versioning or elsewhere - they cannot be versioned
4890                 foreach ( array( 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count', 'post_author' ) as $protect )
4891                         unset( $fields[$protect] );
4892         }
4893
4894         if ( !is_array($post) )
4895                 return $fields;
4896
4897         $return = array();
4898         foreach ( array_intersect( array_keys( $post ), array_keys( $fields ) ) as $field )
4899                 $return[$field] = $post[$field];
4900
4901         $return['post_parent']   = $post['ID'];
4902         $return['post_status']   = 'inherit';
4903         $return['post_type']     = 'revision';
4904         $return['post_name']     = $autosave ? "$post[ID]-autosave" : "$post[ID]-revision";
4905         $return['post_date']     = isset($post['post_modified']) ? $post['post_modified'] : '';
4906         $return['post_date_gmt'] = isset($post['post_modified_gmt']) ? $post['post_modified_gmt'] : '';
4907
4908         return $return;
4909 }
4910
4911 /**
4912  * Saves an already existing post as a post revision.
4913  *
4914  * Typically used immediately prior to post updates.
4915  *
4916  * @package WordPress
4917  * @subpackage Post_Revisions
4918  * @since 2.6.0
4919  *
4920  * @uses _wp_put_post_revision()
4921  *
4922  * @param int $post_id The ID of the post to save as a revision.
4923  * @return mixed Null or 0 if error, new revision ID, if success.
4924  */
4925 function wp_save_post_revision( $post_id ) {
4926         // We do autosaves manually with wp_create_post_autosave()
4927         if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
4928                 return;
4929
4930         // WP_POST_REVISIONS = 0, false
4931         if ( ! WP_POST_REVISIONS )
4932                 return;
4933
4934         if ( !$post = get_post( $post_id, ARRAY_A ) )
4935                 return;
4936
4937         if ( 'auto-draft' == $post['post_status'] )
4938                 return;
4939
4940         if ( !post_type_supports($post['post_type'], 'revisions') )
4941                 return;
4942
4943         $return = _wp_put_post_revision( $post );
4944
4945         // WP_POST_REVISIONS = true (default), -1
4946         if ( !is_numeric( WP_POST_REVISIONS ) || WP_POST_REVISIONS < 0 )
4947                 return $return;
4948
4949         // all revisions and (possibly) one autosave
4950         $revisions = wp_get_post_revisions( $post_id, array( 'order' => 'ASC' ) );
4951
4952         // WP_POST_REVISIONS = (int) (# of autosaves to save)
4953         $delete = count($revisions) - WP_POST_REVISIONS;
4954
4955         if ( $delete < 1 )
4956                 return $return;
4957
4958         $revisions = array_slice( $revisions, 0, $delete );
4959
4960         for ( $i = 0; isset($revisions[$i]); $i++ ) {
4961                 if ( false !== strpos( $revisions[$i]->post_name, 'autosave' ) )
4962                         continue;
4963                 wp_delete_post_revision( $revisions[$i]->ID );
4964         }
4965
4966         return $return;
4967 }
4968
4969 /**
4970  * Retrieve the autosaved data of the specified post.
4971  *
4972  * Returns a post object containing the information that was autosaved for the
4973  * specified post.
4974  *
4975  * @package WordPress
4976  * @subpackage Post_Revisions
4977  * @since 2.6.0
4978  *
4979  * @param int $post_id The post ID.
4980  * @return object|bool The autosaved data or false on failure or when no autosave exists.
4981  */
4982 function wp_get_post_autosave( $post_id ) {
4983
4984         if ( !$post = get_post( $post_id ) )
4985                 return false;
4986
4987         $q = array(
4988                 'name' => "{$post->ID}-autosave",
4989                 'post_parent' => $post->ID,
4990                 'post_type' => 'revision',
4991                 'post_status' => 'inherit'
4992         );
4993
4994         // Use WP_Query so that the result gets cached
4995         $autosave_query = new WP_Query;
4996
4997         add_action( 'parse_query', '_wp_get_post_autosave_hack' );
4998         $autosave = $autosave_query->query( $q );
4999         remove_action( 'parse_query', '_wp_get_post_autosave_hack' );
5000
5001         if ( $autosave && is_array($autosave) && is_object($autosave[0]) )
5002                 return $autosave[0];
5003
5004         return false;
5005 }
5006
5007 /**
5008  * Internally used to hack WP_Query into submission.
5009  *
5010  * @package WordPress
5011  * @subpackage Post_Revisions
5012  * @since 2.6.0
5013  *
5014  * @param object $query WP_Query object
5015  */
5016 function _wp_get_post_autosave_hack( $query ) {
5017         $query->is_single = false;
5018 }
5019
5020 /**
5021  * Determines if the specified post is a revision.
5022  *
5023  * @package WordPress
5024  * @subpackage Post_Revisions
5025  * @since 2.6.0
5026  *
5027  * @param int|object $post Post ID or post object.
5028  * @return bool|int False if not a revision, ID of revision's parent otherwise.
5029  */
5030 function wp_is_post_revision( $post ) {
5031         if ( !$post = wp_get_post_revision( $post ) )
5032                 return false;
5033         return (int) $post->post_parent;
5034 }
5035
5036 /**
5037  * Determines if the specified post is an autosave.
5038  *
5039  * @package WordPress
5040  * @subpackage Post_Revisions
5041  * @since 2.6.0
5042  *
5043  * @param int|object $post Post ID or post object.
5044  * @return bool|int False if not a revision, ID of autosave's parent otherwise
5045  */
5046 function wp_is_post_autosave( $post ) {
5047         if ( !$post = wp_get_post_revision( $post ) )
5048                 return false;
5049         if ( "{$post->post_parent}-autosave" !== $post->post_name )
5050                 return false;
5051         return (int) $post->post_parent;
5052 }
5053
5054 /**
5055  * Inserts post data into the posts table as a post revision.
5056  *
5057  * @package WordPress
5058  * @subpackage Post_Revisions
5059  * @since 2.6.0
5060  *
5061  * @uses wp_insert_post()
5062  *
5063  * @param int|object|array $post Post ID, post object OR post array.
5064  * @param bool $autosave Optional. Is the revision an autosave?
5065  * @return mixed Null or 0 if error, new revision ID if success.
5066  */
5067 function _wp_put_post_revision( $post = null, $autosave = false ) {
5068         if ( is_object($post) )
5069                 $post = get_object_vars( $post );
5070         elseif ( !is_array($post) )
5071                 $post = get_post($post, ARRAY_A);
5072         if ( !$post || empty($post['ID']) )
5073                 return;
5074
5075         if ( isset($post['post_type']) && 'revision' == $post['post_type'] )
5076                 return new WP_Error( 'post_type', __( 'Cannot create a revision of a revision' ) );
5077
5078         $post = _wp_post_revision_fields( $post, $autosave );
5079         $post = add_magic_quotes($post); //since data is from db
5080
5081         $revision_id = wp_insert_post( $post );
5082         if ( is_wp_error($revision_id) )
5083                 return $revision_id;
5084
5085         if ( $revision_id )
5086                 do_action( '_wp_put_post_revision', $revision_id );
5087         return $revision_id;
5088 }
5089
5090 /**
5091  * Gets a post revision.
5092  *
5093  * @package WordPress
5094  * @subpackage Post_Revisions
5095  * @since 2.6.0
5096  *
5097  * @uses get_post()
5098  *
5099  * @param int|object $post Post ID or post object
5100  * @param string $output Optional. OBJECT, ARRAY_A, or ARRAY_N.
5101  * @param string $filter Optional sanitation filter. @see sanitize_post()
5102  * @return mixed Null if error or post object if success
5103  */
5104 function wp_get_post_revision(&$post, $output = OBJECT, $filter = 'raw') {
5105         $null = null;
5106         if ( !$revision = get_post( $post, OBJECT, $filter ) )
5107                 return $revision;
5108         if ( 'revision' !== $revision->post_type )
5109                 return $null;
5110
5111         if ( $output == OBJECT ) {
5112                 return $revision;
5113         } elseif ( $output == ARRAY_A ) {
5114                 $_revision = get_object_vars($revision);
5115                 return $_revision;
5116         } elseif ( $output == ARRAY_N ) {
5117                 $_revision = array_values(get_object_vars($revision));
5118                 return $_revision;
5119         }
5120
5121         return $revision;
5122 }
5123
5124 /**
5125  * Restores a post to the specified revision.
5126  *
5127  * Can restore a past revision using all fields of the post revision, or only selected fields.
5128  *
5129  * @package WordPress
5130  * @subpackage Post_Revisions
5131  * @since 2.6.0
5132  *
5133  * @uses wp_get_post_revision()
5134  * @uses wp_update_post()
5135  * @uses do_action() Calls 'wp_restore_post_revision' on post ID and revision ID if wp_update_post()
5136  *  is successful.
5137  *
5138  * @param int|object $revision_id Revision ID or revision object.
5139  * @param array $fields Optional. What fields to restore from. Defaults to all.
5140  * @return mixed Null if error, false if no fields to restore, (int) post ID if success.
5141  */
5142 function wp_restore_post_revision( $revision_id, $fields = null ) {
5143         if ( !$revision = wp_get_post_revision( $revision_id, ARRAY_A ) )
5144                 return $revision;
5145
5146         if ( !is_array( $fields ) )
5147                 $fields = array_keys( _wp_post_revision_fields() );
5148
5149         $update = array();
5150         foreach( array_intersect( array_keys( $revision ), $fields ) as $field )
5151                 $update[$field] = $revision[$field];
5152
5153         if ( !$update )
5154                 return false;
5155
5156         $update['ID'] = $revision['post_parent'];
5157
5158         $update = add_magic_quotes( $update ); //since data is from db
5159
5160         $post_id = wp_update_post( $update );
5161         if ( is_wp_error( $post_id ) )
5162                 return $post_id;
5163
5164         if ( $post_id )
5165                 do_action( 'wp_restore_post_revision', $post_id, $revision['ID'] );
5166
5167         return $post_id;
5168 }
5169
5170 /**
5171  * Deletes a revision.
5172  *
5173  * Deletes the row from the posts table corresponding to the specified revision.
5174  *
5175  * @package WordPress
5176  * @subpackage Post_Revisions
5177  * @since 2.6.0
5178  *
5179  * @uses wp_get_post_revision()
5180  * @uses wp_delete_post()
5181  *
5182  * @param int|object $revision_id Revision ID or revision object.
5183  * @return mixed Null or WP_Error if error, deleted post if success.
5184  */
5185 function wp_delete_post_revision( $revision_id ) {
5186         if ( !$revision = wp_get_post_revision( $revision_id ) )
5187                 return $revision;
5188
5189         $delete = wp_delete_post( $revision->ID );
5190         if ( is_wp_error( $delete ) )
5191                 return $delete;
5192
5193         if ( $delete )
5194                 do_action( 'wp_delete_post_revision', $revision->ID, $revision );
5195
5196         return $delete;
5197 }
5198
5199 /**
5200  * Returns all revisions of specified post.
5201  *
5202  * @package WordPress
5203  * @subpackage Post_Revisions
5204  * @since 2.6.0
5205  *
5206  * @uses get_children()
5207  *
5208  * @param int|object $post_id Post ID or post object
5209  * @return array empty if no revisions
5210  */
5211 function wp_get_post_revisions( $post_id = 0, $args = null ) {
5212         if ( ! WP_POST_REVISIONS )
5213                 return array();
5214         if ( ( !$post = get_post( $post_id ) ) || empty( $post->ID ) )
5215                 return array();
5216
5217         $defaults = array( 'order' => 'DESC', 'orderby' => 'date' );
5218         $args = wp_parse_args( $args, $defaults );
5219         $args = array_merge( $args, array( 'post_parent' => $post->ID, 'post_type' => 'revision', 'post_status' => 'inherit' ) );
5220
5221         if ( !$revisions = get_children( $args ) )
5222                 return array();
5223         return $revisions;
5224 }
5225
5226 function _set_preview($post) {
5227
5228         if ( ! is_object($post) )
5229                 return $post;
5230
5231         $preview = wp_get_post_autosave($post->ID);
5232
5233         if ( ! is_object($preview) )
5234                 return $post;
5235
5236         $preview = sanitize_post($preview);
5237
5238         $post->post_content = $preview->post_content;
5239         $post->post_title = $preview->post_title;
5240         $post->post_excerpt = $preview->post_excerpt;
5241
5242         return $post;
5243 }
5244
5245 function _show_post_preview() {
5246
5247         if ( isset($_GET['preview_id']) && isset($_GET['preview_nonce']) ) {
5248                 $id = (int) $_GET['preview_id'];
5249
5250                 if ( false == wp_verify_nonce( $_GET['preview_nonce'], 'post_preview_' . $id ) )
5251                         wp_die( __('You do not have permission to preview drafts.') );
5252
5253                 add_filter('the_preview', '_set_preview');
5254         }
5255 }
5256
5257 /**
5258  * Returns the post's parent's post_ID
5259  *
5260  * @since 3.1.0
5261  *
5262  * @param int $post_id
5263  *
5264  * @return int|bool false on error
5265  */
5266 function wp_get_post_parent_id( $post_ID ) {
5267         $post = get_post( $post_ID );
5268         if ( !$post || is_wp_error( $post ) )
5269                 return false;
5270         return (int) $post->post_parent;
5271 }
5272
5273 /**
5274  * Checks the given subset of the post hierarchy for hierarchy loops.
5275  * Prevents loops from forming and breaks those that it finds.
5276  *
5277  * Attached to the wp_insert_post_parent filter.
5278  *
5279  * @since 3.1.0
5280  * @uses wp_find_hierarchy_loop()
5281  *
5282  * @param int $post_parent ID of the parent for the post we're checking.
5283  * @param int $post_ID ID of the post we're checking.
5284  *
5285  * @return int The new post_parent for the post.
5286  */
5287 function wp_check_post_hierarchy_for_loops( $post_parent, $post_ID ) {
5288         // Nothing fancy here - bail
5289         if ( !$post_parent )
5290                 return 0;
5291
5292         // New post can't cause a loop
5293         if ( empty( $post_ID ) )
5294                 return $post_parent;
5295
5296         // Can't be its own parent
5297         if ( $post_parent == $post_ID )
5298                 return 0;
5299
5300         // Now look for larger loops
5301
5302         if ( !$loop = wp_find_hierarchy_loop( 'wp_get_post_parent_id', $post_ID, $post_parent ) )
5303                 return $post_parent; // No loop
5304
5305         // Setting $post_parent to the given value causes a loop
5306         if ( isset( $loop[$post_ID] ) )
5307                 return 0;
5308
5309         // There's a loop, but it doesn't contain $post_ID. Break the loop.
5310         foreach ( array_keys( $loop ) as $loop_member )
5311                 wp_update_post( array( 'ID' => $loop_member, 'post_parent' => 0 ) );
5312
5313         return $post_parent;
5314 }
5315
5316 /**
5317  * Returns an array of post format slugs to their translated and pretty display versions
5318  *
5319  * @since 3.1.0
5320  *
5321  * @return array The array of translations
5322  */
5323 function get_post_format_strings() {
5324         $strings = array(
5325                 'standard' => _x( 'Standard', 'Post format' ), // Special case. any value that evals to false will be considered standard
5326                 'aside'    => _x( 'Aside',    'Post format' ),
5327                 'chat'     => _x( 'Chat',     'Post format' ),
5328                 'gallery'  => _x( 'Gallery',  'Post format' ),
5329                 'link'     => _x( 'Link',     'Post format' ),
5330                 'image'    => _x( 'Image',    'Post format' ),
5331                 'quote'    => _x( 'Quote',    'Post format' ),
5332                 'status'   => _x( 'Status',   'Post format' ),
5333                 'video'    => _x( 'Video',    'Post format' ),
5334                 'audio'    => _x( 'Audio',    'Post format' ),
5335         );
5336         return $strings;
5337 }
5338
5339 /**
5340  * Retrieves an array of post format slugs.
5341  *
5342  * @since 3.1.0
5343  *
5344  * @return array The array of post format slugs.
5345  */
5346 function get_post_format_slugs() {
5347         $slugs = array_keys( get_post_format_strings() );
5348         return array_combine( $slugs, $slugs );
5349 }
5350
5351 /**
5352  * Returns a pretty, translated version of a post format slug
5353  *
5354  * @since 3.1.0
5355  *
5356  * @param string $slug A post format slug
5357  * @return string The translated post format name
5358  */
5359 function get_post_format_string( $slug ) {
5360         $strings = get_post_format_strings();
5361         if ( !$slug )
5362                 return $strings['standard'];
5363         else
5364                 return ( isset( $strings[$slug] ) ) ? $strings[$slug] : '';
5365 }
5366
5367 /**
5368  * Sets a post thumbnail.
5369  *
5370  * @since 3.1.0
5371  *
5372  * @param int|object $post Post ID or object where thumbnail should be attached.
5373  * @param int $thumbnail_id Thumbnail to attach.
5374  * @return bool True on success, false on failure.
5375  */
5376 function set_post_thumbnail( $post, $thumbnail_id ) {
5377         $post = get_post( $post );
5378         $thumbnail_id = absint( $thumbnail_id );
5379         if ( $post && $thumbnail_id && get_post( $thumbnail_id ) ) {
5380                 if ( $thumbnail_html = wp_get_attachment_image( $thumbnail_id, 'thumbnail' ) )
5381                         return update_post_meta( $post->ID, '_thumbnail_id', $thumbnail_id );
5382                 else
5383                         return delete_post_meta( $post->ID, '_thumbnail_id' );
5384         }
5385         return false;
5386 }
5387
5388 /**
5389  * Removes a post thumbnail.
5390  *
5391  * @since 3.3.0
5392  *
5393  * @param int|object $post Post ID or object where thumbnail should be removed from.
5394  * @return bool True on success, false on failure.
5395  */
5396 function delete_post_thumbnail( $post ) {
5397         $post = get_post( $post );
5398         if ( $post )
5399                 return delete_post_meta( $post->ID, '_thumbnail_id' );
5400         return false;
5401 }
5402
5403 /**
5404  * Returns a link to a post format index.
5405  *
5406  * @since 3.1.0
5407  *
5408  * @param string $format Post format
5409  * @return string Link
5410  */
5411 function get_post_format_link( $format ) {
5412         $term = get_term_by('slug', 'post-format-' . $format, 'post_format' );
5413         if ( ! $term || is_wp_error( $term ) )
5414                 return false;
5415         return get_term_link( $term );
5416 }
5417
5418 /**
5419  * Deletes auto-drafts for new posts that are > 7 days old
5420  *
5421  * @since 3.4.0
5422  */
5423 function wp_delete_auto_drafts() {
5424         global $wpdb;
5425
5426         // Cleanup old auto-drafts more than 7 days old
5427         $old_posts = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_status = 'auto-draft' AND DATE_SUB( NOW(), INTERVAL 7 DAY ) > post_date" );
5428         foreach ( (array) $old_posts as $delete )
5429                 wp_delete_post( $delete, true ); // Force delete
5430 }
5431
5432 /**
5433  * Filters the request to allow for the format prefix.
5434  *
5435  * @access private
5436  * @since 3.1.0
5437  */
5438 function _post_format_request( $qvs ) {
5439         if ( ! isset( $qvs['post_format'] ) )
5440                 return $qvs;
5441         $slugs = get_post_format_slugs();
5442         if ( isset( $slugs[ $qvs['post_format'] ] ) )
5443                 $qvs['post_format'] = 'post-format-' . $slugs[ $qvs['post_format'] ];
5444         $tax = get_taxonomy( 'post_format' );
5445         if ( ! is_admin() )
5446                 $qvs['post_type'] = $tax->object_type;
5447         return $qvs;
5448 }
5449 add_filter( 'request', '_post_format_request' );
5450
5451 /**
5452  * Filters the post format term link to remove the format prefix.
5453  *
5454  * @access private
5455  * @since 3.1.0
5456  */
5457 function _post_format_link( $link, $term, $taxonomy ) {
5458         global $wp_rewrite;
5459         if ( 'post_format' != $taxonomy )
5460                 return $link;
5461         if ( $wp_rewrite->get_extra_permastruct( $taxonomy ) ) {
5462                 return str_replace( "/{$term->slug}", '/' . str_replace( 'post-format-', '', $term->slug ), $link );
5463         } else {
5464                 $link = remove_query_arg( 'post_format', $link );
5465                 return add_query_arg( 'post_format', str_replace( 'post-format-', '', $term->slug ), $link );
5466         }
5467 }
5468 add_filter( 'term_link', '_post_format_link', 10, 3 );
5469
5470 /**
5471  * Remove the post format prefix from the name property of the term object created by get_term().
5472  *
5473  * @access private
5474  * @since 3.1.0
5475  */
5476 function _post_format_get_term( $term ) {
5477         if ( isset( $term->slug ) ) {
5478                 $term->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) );
5479         }
5480         return $term;
5481 }
5482 add_filter( 'get_post_format', '_post_format_get_term' );
5483
5484 /**
5485  * Remove the post format prefix from the name property of the term objects created by get_terms().
5486  *
5487  * @access private
5488  * @since 3.1.0
5489  */
5490 function _post_format_get_terms( $terms, $taxonomies, $args ) {
5491         if ( in_array( 'post_format', (array) $taxonomies ) ) {
5492                 if ( isset( $args['fields'] ) && 'names' == $args['fields'] ) {
5493                         foreach( $terms as $order => $name ) {
5494                                 $terms[$order] = get_post_format_string( str_replace( 'post-format-', '', $name ) );
5495                         }
5496                 } else {
5497                         foreach ( (array) $terms as $order => $term ) {
5498                                 if ( isset( $term->taxonomy ) && 'post_format' == $term->taxonomy ) {
5499                                         $terms[$order]->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) );
5500                                 }
5501                         }
5502                 }
5503         }
5504         return $terms;
5505 }
5506 add_filter( 'get_terms', '_post_format_get_terms', 10, 3 );
5507
5508 /**
5509  * Remove the post format prefix from the name property of the term objects created by wp_get_object_terms().
5510  *
5511  * @access private
5512  * @since 3.1.0
5513  */
5514 function _post_format_wp_get_object_terms( $terms ) {
5515         foreach ( (array) $terms as $order => $term ) {
5516                 if ( isset( $term->taxonomy ) && 'post_format' == $term->taxonomy ) {
5517                         $terms[$order]->name = get_post_format_string( str_replace( 'post-format-', '', $term->slug ) );
5518                 }
5519         }
5520         return $terms;
5521 }
5522 add_filter( 'wp_get_object_terms', '_post_format_wp_get_object_terms' );
5523
5524 /**
5525  * Update the custom taxonomies' term counts when a post's status is changed. For example, default posts term counts (for custom taxonomies) don't include private / draft posts.
5526  *
5527  * @access private
5528  * @param string $new_status
5529  * @param string $old_status
5530  * @param object $post
5531  * @since 3.3.0
5532  */
5533 function _update_term_count_on_transition_post_status( $new_status, $old_status, $post ) {
5534         // Update counts for the post's terms.
5535         foreach ( (array) get_object_taxonomies( $post->post_type ) as $taxonomy ) {
5536                 $tt_ids = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'tt_ids' ) );
5537                 wp_update_term_count( $tt_ids, $taxonomy );
5538         }
5539 }
5540
5541 /**
5542  * Adds any posts from the given ids to the cache that do not already exist in cache
5543  *
5544  * @since 3.4.0
5545  *
5546  * @access private
5547  *
5548  * @param array $post_ids ID list
5549  * @param bool $update_term_cache Whether to update the term cache. Default is true.
5550  * @param bool $update_meta_cache Whether to update the meta cache. Default is true.
5551  */
5552 function _prime_post_caches( $ids, $update_term_cache = true, $update_meta_cache = true ) {
5553         global $wpdb;
5554
5555         $non_cached_ids = _get_non_cached_ids( $ids, 'posts' );
5556         if ( !empty( $non_cached_ids ) ) {
5557                 $fresh_posts = $wpdb->get_results( sprintf( "SELECT $wpdb->posts.* FROM $wpdb->posts WHERE ID IN (%s)", join( ",", $non_cached_ids ) ) );
5558
5559                 update_post_caches( $fresh_posts, 'any', $update_term_cache, $update_meta_cache );
5560         }
5561 }