]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/taxonomy.php
33d4329debf83e2d75ab71e0370b40010320b7a8
[autoinstalls/wordpress.git] / wp-includes / taxonomy.php
1 <?php
2 /**
3  * Taxonomy API
4  *
5  * @package WordPress
6  * @subpackage Taxonomy
7  * @since 2.3.0
8  */
9
10 //
11 // Taxonomy Registration
12 //
13
14 /**
15  * Creates the initial taxonomies when 'init' action is fired.
16  */
17 function create_initial_taxonomies() {
18         global $wp_rewrite;
19
20         register_taxonomy( 'category', 'post', array(
21                 'hierarchical' => true,
22                 'update_count_callback' => '_update_post_term_count',
23                 'query_var' => 'category_name',
24                 'rewrite' => did_action( 'init' ) ? array(
25                                         'hierarchical' => true,
26                                         'slug' => get_option('category_base') ? get_option('category_base') : 'category',
27                                         'with_front' => ( get_option('category_base') && ! $wp_rewrite->using_index_permalinks() ) ? false : true ) : false,
28                 'public' => true,
29                 'show_ui' => true,
30                 '_builtin' => true,
31         ) );
32
33         register_taxonomy( 'post_tag', 'post', array(
34                 'hierarchical' => false,
35                 'update_count_callback' => '_update_post_term_count',
36                 'query_var' => 'tag',
37                 'rewrite' => did_action( 'init' ) ? array(
38                                         'slug' => get_option('tag_base') ? get_option('tag_base') : 'tag',
39                                         'with_front' => ( get_option('category_base') && ! $wp_rewrite->using_index_permalinks() ) ? false : true ) : false,
40                 'public' => true,
41                 'show_ui' => true,
42                 '_builtin' => true,
43         ) );
44
45         register_taxonomy( 'nav_menu', 'nav_menu_item', array(
46                 'public' => false,
47                 'hierarchical' => false,
48                 'labels' => array(
49                         'name' => __( 'Navigation Menus' ),
50                         'singular_name' => __( 'Navigation Menu' ),
51                 ),
52                 'query_var' => false,
53                 'rewrite' => false,
54                 'show_ui' => false,
55                 '_builtin' => true,
56                 'show_in_nav_menus' => false,
57         ) );
58
59         register_taxonomy( 'link_category', 'link', array(
60                 'hierarchical' => false,
61                 'labels' => array(
62                         'name' => __( 'Link Categories' ),
63                         'singular_name' => __( 'Link Category' ),
64                         'search_items' => __( 'Search Link Categories' ),
65                         'popular_items' => null,
66                         'all_items' => __( 'All Link Categories' ),
67                         'edit_item' => __( 'Edit Link Category' ),
68                         'update_item' => __( 'Update Link Category' ),
69                         'add_new_item' => __( 'Add New Link Category' ),
70                         'new_item_name' => __( 'New Link Category Name' ),
71                         'separate_items_with_commas' => null,
72                         'add_or_remove_items' => null,
73                         'choose_from_most_used' => null,
74                 ),
75                 'query_var' => false,
76                 'rewrite' => false,
77                 'public' => false,
78                 'show_ui' => false,
79                 '_builtin' => true,
80         ) );
81
82         $rewrite = false;
83         if ( did_action( 'init' ) ) {
84                 $rewrite = apply_filters( 'post_format_rewrite_base', 'type' );
85                 $rewrite = $rewrite ? array( 'slug' => $rewrite ) : false;
86         }
87
88         register_taxonomy( 'post_format', 'post', array(
89                 'public' => true,
90                 'hierarchical' => false,
91                 'labels' => array(
92                         'name' => _x( 'Format', 'post format' ),
93                         'singular_name' => _x( 'Format', 'post format' ),
94                 ),
95                 'query_var' => true,
96                 'rewrite' => $rewrite,
97                 'show_ui' => false,
98                 '_builtin' => true,
99                 'show_in_nav_menus' => false,
100         ) );
101 }
102 add_action( 'init', 'create_initial_taxonomies', 0 ); // highest priority
103
104 /**
105  * Get a list of registered taxonomy objects.
106  *
107  * @package WordPress
108  * @subpackage Taxonomy
109  * @since 3.0.0
110  * @uses $wp_taxonomies
111  * @see register_taxonomy
112  *
113  * @param array $args An array of key => value arguments to match against the taxonomy objects.
114  * @param string $output The type of output to return, either taxonomy 'names' or 'objects'. 'names' is the default.
115  * @param string $operator The logical operation to perform. 'or' means only one element
116  *  from the array needs to match; 'and' means all elements must match. The default is 'and'.
117  * @return array A list of taxonomy names or objects
118  */
119 function get_taxonomies( $args = array(), $output = 'names', $operator = 'and' ) {
120         global $wp_taxonomies;
121
122         $field = ('names' == $output) ? 'name' : false;
123
124         return wp_filter_object_list($wp_taxonomies, $args, $operator, $field);
125 }
126
127
128 /**
129  * Return all of the taxonomy names that are of $object_type.
130  *
131  * It appears that this function can be used to find all of the names inside of
132  * $wp_taxonomies global variable.
133  *
134  * <code><?php $taxonomies = get_object_taxonomies('post'); ?></code> Should
135  * result in <code>Array('category', 'post_tag')</code>
136  *
137  * @package WordPress
138  * @subpackage Taxonomy
139  * @since 2.3.0
140  *
141  * @uses $wp_taxonomies
142  *
143  * @param array|string|object $object Name of the type of taxonomy object, or an object (row from posts)
144  * @param string $output The type of output to return, either taxonomy 'names' or 'objects'. 'names' is the default.
145  * @return array The names of all taxonomy of $object_type.
146  */
147 function get_object_taxonomies($object, $output = 'names') {
148         global $wp_taxonomies;
149
150         if ( is_object($object) ) {
151                 if ( $object->post_type == 'attachment' )
152                         return get_attachment_taxonomies($object);
153                 $object = $object->post_type;
154         }
155
156         $object = (array) $object;
157
158         $taxonomies = array();
159         foreach ( (array) $wp_taxonomies as $tax_name => $tax_obj ) {
160                 if ( array_intersect($object, (array) $tax_obj->object_type) ) {
161                         if ( 'names' == $output )
162                                 $taxonomies[] = $tax_name;
163                         else
164                                 $taxonomies[ $tax_name ] = $tax_obj;
165                 }
166         }
167
168         return $taxonomies;
169 }
170
171 /**
172  * Retrieves the taxonomy object of $taxonomy.
173  *
174  * The get_taxonomy function will first check that the parameter string given
175  * is a taxonomy object and if it is, it will return it.
176  *
177  * @package WordPress
178  * @subpackage Taxonomy
179  * @since 2.3.0
180  *
181  * @uses $wp_taxonomies
182  * @uses taxonomy_exists() Checks whether taxonomy exists
183  *
184  * @param string $taxonomy Name of taxonomy object to return
185  * @return object|bool The Taxonomy Object or false if $taxonomy doesn't exist
186  */
187 function get_taxonomy( $taxonomy ) {
188         global $wp_taxonomies;
189
190         if ( ! taxonomy_exists( $taxonomy ) )
191                 return false;
192
193         return $wp_taxonomies[$taxonomy];
194 }
195
196 /**
197  * Checks that the taxonomy name exists.
198  *
199  * Formerly is_taxonomy(), introduced in 2.3.0.
200  *
201  * @package WordPress
202  * @subpackage Taxonomy
203  * @since 3.0.0
204  *
205  * @uses $wp_taxonomies
206  *
207  * @param string $taxonomy Name of taxonomy object
208  * @return bool Whether the taxonomy exists.
209  */
210 function taxonomy_exists( $taxonomy ) {
211         global $wp_taxonomies;
212
213         return isset( $wp_taxonomies[$taxonomy] );
214 }
215
216 /**
217  * Whether the taxonomy object is hierarchical.
218  *
219  * Checks to make sure that the taxonomy is an object first. Then Gets the
220  * object, and finally returns the hierarchical value in the object.
221  *
222  * A false return value might also mean that the taxonomy does not exist.
223  *
224  * @package WordPress
225  * @subpackage Taxonomy
226  * @since 2.3.0
227  *
228  * @uses taxonomy_exists() Checks whether taxonomy exists
229  * @uses get_taxonomy() Used to get the taxonomy object
230  *
231  * @param string $taxonomy Name of taxonomy object
232  * @return bool Whether the taxonomy is hierarchical
233  */
234 function is_taxonomy_hierarchical($taxonomy) {
235         if ( ! taxonomy_exists($taxonomy) )
236                 return false;
237
238         $taxonomy = get_taxonomy($taxonomy);
239         return $taxonomy->hierarchical;
240 }
241
242 /**
243  * Create or modify a taxonomy object. Do not use before init.
244  *
245  * A simple function for creating or modifying a taxonomy object based on the
246  * parameters given. The function will accept an array (third optional
247  * parameter), along with strings for the taxonomy name and another string for
248  * the object type.
249  *
250  * Nothing is returned, so expect error maybe or use taxonomy_exists() to check
251  * whether taxonomy exists.
252  *
253  * Optional $args contents:
254  *
255  * label - Name of the taxonomy shown in the menu. Usually plural. If not set, labels['name'] will be used.
256  *
257  * hierarchical - has some defined purpose at other parts of the API and is a
258  * boolean value.
259  *
260  * update_count_callback - works much like a hook, in that it will be called
261  * when the count is updated.
262  *
263  * rewrite - false to prevent rewrite, or array('slug'=>$slug) to customize
264  * permastruct; default will use $taxonomy as slug.
265  *
266  * query_var - false to prevent queries, or string to customize query var
267  * (?$query_var=$term); default will use $taxonomy as query var.
268  *
269  * public - If the taxonomy should be publically queryable; //@TODO not implemented.
270  * defaults to true.
271  *
272  * show_ui - If the WordPress UI admin tags UI should apply to this taxonomy;
273  * defaults to public.
274  *
275  * show_in_nav_menus - true makes this taxonomy available for selection in navigation menus.
276  * Defaults to public.
277  *
278  * show_tagcloud - false to prevent the taxonomy being listed in the Tag Cloud Widget;
279  * defaults to show_ui which defalts to public.
280  *
281  * labels - An array of labels for this taxonomy. You can see accepted values in {@link get_taxonomy_labels()}. By default tag labels are used for non-hierarchical types and category labels for hierarchical ones.
282  *
283  * @package WordPress
284  * @subpackage Taxonomy
285  * @since 2.3.0
286  * @uses $wp_taxonomies Inserts new taxonomy object into the list
287  * @uses $wp_rewrite Adds rewrite tags and permastructs
288  * @uses $wp Adds query vars
289  *
290  * @param string $taxonomy Name of taxonomy object
291  * @param array|string $object_type Name of the object type for the taxonomy object.
292  * @param array|string $args See above description for the two keys values.
293  */
294 function register_taxonomy( $taxonomy, $object_type, $args = array() ) {
295         global $wp_taxonomies, $wp_rewrite, $wp;
296
297         if ( ! is_array($wp_taxonomies) )
298                 $wp_taxonomies = array();
299
300         $defaults = array(      'hierarchical' => false,
301                                                 'update_count_callback' => '',
302                                                 'rewrite' => true,
303                                                 'query_var' => $taxonomy,
304                                                 'public' => true,
305                                                 'show_ui' => null,
306                                                 'show_tagcloud' => null,
307                                                 '_builtin' => false,
308                                                 'labels' => array(),
309                                                 'capabilities' => array(),
310                                                 'show_in_nav_menus' => null,
311                                         );
312         $args = wp_parse_args($args, $defaults);
313
314         if ( false !== $args['query_var'] && !empty($wp) ) {
315                 if ( true === $args['query_var'] )
316                         $args['query_var'] = $taxonomy;
317                 $args['query_var'] = sanitize_title_with_dashes($args['query_var']);
318                 $wp->add_query_var($args['query_var']);
319         }
320
321         if ( false !== $args['rewrite'] && '' != get_option('permalink_structure') ) {
322                 $args['rewrite'] = wp_parse_args($args['rewrite'], array(
323                         'slug' => sanitize_title_with_dashes($taxonomy),
324                         'with_front' => true,
325                         'hierarchical' => false
326                 ));
327
328                 if ( $args['hierarchical'] && $args['rewrite']['hierarchical'] )
329                         $tag = '(.+?)';
330                 else
331                         $tag = '([^/]+)';
332
333                 $wp_rewrite->add_rewrite_tag("%$taxonomy%", $tag, $args['query_var'] ? "{$args['query_var']}=" : "taxonomy=$taxonomy&term=");
334                 $wp_rewrite->add_permastruct($taxonomy, "{$args['rewrite']['slug']}/%$taxonomy%", $args['rewrite']['with_front']);
335         }
336
337         if ( is_null($args['show_ui']) )
338                 $args['show_ui'] = $args['public'];
339
340         // Whether to show this type in nav-menus.php. Defaults to the setting for public.
341         if ( null === $args['show_in_nav_menus'] )
342                 $args['show_in_nav_menus'] = $args['public'];
343
344         if ( is_null($args['show_tagcloud']) )
345                 $args['show_tagcloud'] = $args['show_ui'];
346
347         $default_caps = array(
348                 'manage_terms' => 'manage_categories',
349                 'edit_terms'   => 'manage_categories',
350                 'delete_terms' => 'manage_categories',
351                 'assign_terms' => 'edit_posts',
352         );
353         $args['cap'] = (object) array_merge( $default_caps, $args['capabilities'] );
354         unset( $args['capabilities'] );
355
356         $args['name'] = $taxonomy;
357         $args['object_type'] = (array) $object_type;
358
359         $args['labels'] = get_taxonomy_labels( (object) $args );
360         $args['label'] = $args['labels']->name;
361
362         $wp_taxonomies[$taxonomy] = (object) $args;
363
364         // register callback handling for metabox
365         add_filter('wp_ajax_add-' . $taxonomy, '_wp_ajax_add_hierarchical_term');
366 }
367
368 /**
369  * Builds an object with all taxonomy labels out of a taxonomy object
370  *
371  * Accepted keys of the label array in the taxonomy object:
372  * - name - general name for the taxonomy, usually plural. The same as and overriden by $tax->label. Default is Post Tags/Categories
373  * - singular_name - name for one object of this taxonomy. Default is Post Tag/Category
374  * - search_items - Default is Search Tags/Search Categories
375  * - popular_items - This string isn't used on hierarchical taxonomies. Default is Popular Tags
376  * - all_items - Default is All Tags/All Categories
377  * - parent_item - This string isn't used on non-hierarchical taxonomies. In hierarchical ones the default is Parent Category
378  * - parent_item_colon - The same as <code>parent_item</code>, but with colon <code>:</code> in the end
379  * - edit_item - Default is Edit Tag/Edit Category
380  * - update_item - Default is Update Tag/Update Category
381  * - add_new_item - Default is Add New Tag/Add New Category
382  * - new_item_name - Default is New Tag Name/New Category Name
383  * - separate_items_with_commas - This string isn't used on hierarchical taxonomies. Default is "Separate tags with commas," used in the meta box.
384  * - add_or_remove_items - This string isn't used on hierarchical taxonomies. Default is "Add or remove tags," used in the meta box when JavaScript is disabled.
385  * - choose_from_most_used - This string isn't used on hierarchical taxonomies. Default is "Choose from the most used tags," used in the meta box.
386  *
387  * Above, the first default value is for non-hierarchical taxonomies (like tags) and the second one is for hierarchical taxonomies (like categories.)
388  *
389  * @since 3.0.0
390  * @param object $tax Taxonomy object
391  * @return object object with all the labels as member variables
392  */
393
394 function get_taxonomy_labels( $tax ) {
395         if ( isset( $tax->helps ) && empty( $tax->labels['separate_items_with_commas'] ) )
396                 $tax->labels['separate_items_with_commas'] = $tax->helps;
397
398         $nohier_vs_hier_defaults = array(
399                 'name' => array( _x( 'Post Tags', 'taxonomy general name' ), _x( 'Categories', 'taxonomy general name' ) ),
400                 'singular_name' => array( _x( 'Post Tag', 'taxonomy singular name' ), _x( 'Category', 'taxonomy singular name' ) ),
401                 'search_items' => array( __( 'Search Tags' ), __( 'Search Categories' ) ),
402                 'popular_items' => array( __( 'Popular Tags' ), null ),
403                 'all_items' => array( __( 'All Tags' ), __( 'All Categories' ) ),
404                 'parent_item' => array( null, __( 'Parent Category' ) ),
405                 'parent_item_colon' => array( null, __( 'Parent Category:' ) ),
406                 'edit_item' => array( __( 'Edit Tag' ), __( 'Edit Category' ) ),
407                 'update_item' => array( __( 'Update Tag' ), __( 'Update Category' ) ),
408                 'add_new_item' => array( __( 'Add New Tag' ), __( 'Add New Category' ) ),
409                 'new_item_name' => array( __( 'New Tag Name' ), __( 'New Category Name' ) ),
410                 'separate_items_with_commas' => array( __( 'Separate tags with commas' ), null ),
411                 'add_or_remove_items' => array( __( 'Add or remove tags' ), null ),
412                 'choose_from_most_used' => array( __( 'Choose from the most used tags' ), null ),
413         );
414         $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
415
416         return _get_custom_object_labels( $tax, $nohier_vs_hier_defaults );
417 }
418
419 /**
420  * Add an already registered taxonomy to an object type.
421  *
422  * @package WordPress
423  * @subpackage Taxonomy
424  * @since 3.0.0
425  * @uses $wp_taxonomies Modifies taxonomy object
426  *
427  * @param string $taxonomy Name of taxonomy object
428  * @param array|string $object_type Name of the object type
429  * @return bool True if successful, false if not
430  */
431 function register_taxonomy_for_object_type( $taxonomy, $object_type) {
432         global $wp_taxonomies;
433
434         if ( !isset($wp_taxonomies[$taxonomy]) )
435                 return false;
436
437         if ( ! get_post_type_object($object_type) )
438                 return false;
439
440         $wp_taxonomies[$taxonomy]->object_type[] = $object_type;
441
442         return true;
443 }
444
445 //
446 // Term API
447 //
448
449 /**
450  * Retrieve object_ids of valid taxonomy and term.
451  *
452  * The strings of $taxonomies must exist before this function will continue. On
453  * failure of finding a valid taxonomy, it will return an WP_Error class, kind
454  * of like Exceptions in PHP 5, except you can't catch them. Even so, you can
455  * still test for the WP_Error class and get the error message.
456  *
457  * The $terms aren't checked the same as $taxonomies, but still need to exist
458  * for $object_ids to be returned.
459  *
460  * It is possible to change the order that object_ids is returned by either
461  * using PHP sort family functions or using the database by using $args with
462  * either ASC or DESC array. The value should be in the key named 'order'.
463  *
464  * @package WordPress
465  * @subpackage Taxonomy
466  * @since 2.3.0
467  *
468  * @uses $wpdb
469  * @uses wp_parse_args() Creates an array from string $args.
470  *
471  * @param int|array $term_ids Term id or array of term ids of terms that will be used
472  * @param string|array $taxonomies String of taxonomy name or Array of string values of taxonomy names
473  * @param array|string $args Change the order of the object_ids, either ASC or DESC
474  * @return WP_Error|array If the taxonomy does not exist, then WP_Error will be returned. On success
475  *      the array can be empty meaning that there are no $object_ids found or it will return the $object_ids found.
476  */
477 function get_objects_in_term( $term_ids, $taxonomies, $args = array() ) {
478         global $wpdb;
479
480         if ( ! is_array( $term_ids ) )
481                 $term_ids = array( $term_ids );
482
483         if ( ! is_array( $taxonomies ) )
484                 $taxonomies = array( $taxonomies );
485
486         foreach ( (array) $taxonomies as $taxonomy ) {
487                 if ( ! taxonomy_exists( $taxonomy ) )
488                         return new WP_Error( 'invalid_taxonomy', __( 'Invalid Taxonomy' ) );
489         }
490
491         $defaults = array( 'order' => 'ASC' );
492         $args = wp_parse_args( $args, $defaults );
493         extract( $args, EXTR_SKIP );
494
495         $order = ( 'desc' == strtolower( $order ) ) ? 'DESC' : 'ASC';
496
497         $term_ids = array_map('intval', $term_ids );
498
499         $taxonomies = "'" . implode( "', '", $taxonomies ) . "'";
500         $term_ids = "'" . implode( "', '", $term_ids ) . "'";
501
502         $object_ids = $wpdb->get_col("SELECT tr.object_id FROM $wpdb->term_relationships AS tr INNER JOIN $wpdb->term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ($taxonomies) AND tt.term_id IN ($term_ids) ORDER BY tr.object_id $order");
503
504         if ( ! $object_ids )
505                 return array();
506
507         return $object_ids;
508 }
509
510 /**
511  * Given a taxonomy query, generates SQL to be appended to a main query.
512  *
513  * @since 3.1.0
514  *
515  * @see WP_Tax_Query
516  *
517  * @param array $tax_query A compact tax query
518  * @param string $primary_table
519  * @param string $primary_id_column
520  * @return array
521  */
522 function get_tax_sql( $tax_query, $primary_table, $primary_id_column ) {
523         $tax_query_obj = new WP_Tax_Query( $tax_query );
524         return $tax_query_obj->get_sql( $primary_table, $primary_id_column );
525 }
526
527 /**
528  * Container class for a multiple taxonomy query.
529  *
530  * @since 3.1.0
531  */
532 class WP_Tax_Query {
533
534         /**
535          * List of taxonomy queries. A single taxonomy query is an associative array:
536          * - 'taxonomy' string The taxonomy being queried
537          * - 'terms' string|array The list of terms
538          * - 'field' string (optional) Which term field is being used.
539          *              Possible values: 'term_id', 'slug' or 'name'
540          *              Default: 'term_id'
541          * - 'operator' string (optional)
542          *              Possible values: 'IN' and 'NOT IN'.
543          *              Default: 'IN'
544          * - 'include_children' bool (optional) Whether to include child terms.
545          *              Default: true
546          *
547          * @since 3.1.0
548          * @access public
549          * @var array
550          */
551         var $queries = array();
552
553         /**
554          * The relation between the queries. Can be one of 'AND' or 'OR'.
555          *
556          * @since 3.1.0
557          * @access public
558          * @var string
559          */
560         var $relation;
561
562         /**
563          * PHP4 type constructor.
564          *
565          * Parses a compact tax query and sets defaults.
566          *
567          * @since 3.1.0
568          * @access public
569          *
570          * @param array $tax_query A compact tax query:
571          *  array(
572          *    'relation' => 'OR',
573          *    array(
574          *      'taxonomy' => 'tax1',
575          *      'terms' => array( 'term1', 'term2' ),
576          *      'field' => 'slug',
577          *    ),
578          *    array(
579          *      'taxonomy' => 'tax2',
580          *      'terms' => array( 'term-a', 'term-b' ),
581          *      'field' => 'slug',
582          *    ),
583          *  )
584          *
585          * @return WP_Tax_Query
586          */
587         function WP_Tax_Query( $tax_query ) {
588                 if ( isset( $tax_query['relation'] ) && strtoupper( $tax_query['relation'] ) == 'OR' ) {
589                         $this->relation = 'OR';
590                 } else {
591                         $this->relation = 'AND';
592                 }
593
594                 $defaults = array(
595                         'taxonomy' => '',
596                         'terms' => array(),
597                         'include_children' => true,
598                         'field' => 'term_id',
599                         'operator' => 'IN',
600                 );
601
602                 foreach ( $tax_query as $query ) {
603                         if ( ! is_array( $query ) )
604                                 continue;
605
606                         $query = array_merge( $defaults, $query );
607
608                         $query['terms'] = (array) $query['terms'];
609
610                         $this->queries[] = $query;
611                 }
612         }
613
614         /**
615          * Generates SQL clauses to be appended to a main query.
616          *
617          * @since 3.1.0
618          * @access public
619          *
620          * @param string $primary_table
621          * @param string $primary_id_column
622          * @return array
623          */
624         function get_sql( $primary_table, $primary_id_column ) {
625                 global $wpdb;
626
627                 $join = '';
628                 $where = array();
629                 $i = 0;
630
631                 foreach ( $this->queries as $query ) {
632                         extract( $query );
633
634                         if ( ! taxonomy_exists( $taxonomy ) )
635                                 return array( 'join' => '', 'where' => ' AND 0 = 1');
636
637                         $terms = array_unique( (array) $terms );
638
639                         if ( empty( $terms ) )
640                                 continue;
641
642                         if ( is_taxonomy_hierarchical( $taxonomy ) && $include_children ) {
643                                 $this->_transform_terms( $terms, $taxonomy, $field, 'term_id' );
644
645                                 $children = array();
646                                 foreach ( $terms as $term ) {
647                                         $children = array_merge( $children, get_term_children( $term, $taxonomy ) );
648                                         $children[] = $term;
649                                 }
650                                 $terms = $children;
651
652                                 $this->_transform_terms( $terms, $taxonomy, 'term_id', 'term_taxonomy_id' );
653                         }
654                         else {
655                                 $this->_transform_terms( $terms, $taxonomy, $field, 'term_taxonomy_id' );
656                         }
657
658                         if ( 'IN' == $operator ) {
659
660                                 if ( empty( $terms ) ) {
661                                         if ( 'OR' == $this->relation )
662                                                 continue;
663                                         else
664                                                 return array( 'join' => '', 'where' => ' AND 0 = 1' );
665                                 }
666
667                                 $terms = implode( ',', $terms );
668
669                                 $alias = $i ? 'tt' . $i : $wpdb->term_relationships;
670
671                                 $join .= " INNER JOIN $wpdb->term_relationships";
672                                 $join .= $i ? " AS $alias" : '';
673                                 $join .= " ON ($primary_table.$primary_id_column = $alias.object_id)";
674
675                                 $where[] = "$alias.term_taxonomy_id $operator ($terms)";
676                         } elseif ( 'NOT IN' == $operator ) {
677
678                                 if ( empty( $terms ) )
679                                         continue;
680
681                                 $terms = implode( ',', $terms );
682
683                                 $where[] = "$primary_table.$primary_id_column NOT IN (
684                                         SELECT object_id
685                                         FROM $wpdb->term_relationships
686                                         WHERE term_taxonomy_id IN ($terms)
687                                 )";
688                         } elseif ( 'AND' == $operator ) {
689
690                                 if ( empty( $terms ) )
691                                         continue;
692
693                                 $num_terms = count( $terms );
694
695                                 $terms = implode( ',', $terms );
696
697                                 $where[] = "$primary_table.$primary_id_column IN (
698                                         SELECT object_id
699                                         FROM $wpdb->term_relationships
700                                         WHERE term_taxonomy_id IN ($terms)
701                                         GROUP BY object_id HAVING COUNT(object_id) = $num_terms
702                                 )";
703                         }
704
705                         $i++;
706                 }
707
708                 if ( !empty( $where ) )
709                         $where = ' AND ( ' . implode( " $this->relation ", $where ) . ' )';
710                 else
711                         $where = '';
712
713                 return compact( 'join', 'where' );
714         }
715
716         /**
717          * Transforms a list of terms, from one field to another.
718          *
719          * @since 3.1.0
720          * @access private
721          *
722          * @param array &$terms The list of terms
723          * @param string $taxonomy The taxonomy of the terms
724          * @param string $field The initial field
725          * @param string $resulting_field The resulting field
726          */
727         function _transform_terms( &$terms, $taxonomy, $field, $resulting_field ) {
728                 global $wpdb;
729
730                 if ( empty( $terms ) )
731                         return;
732
733                 if ( $field == $resulting_field )
734                         return;
735
736                 $resulting_field = esc_sql( $resulting_field );
737
738                 switch ( $field ) {
739                         case 'slug':
740                         case 'name':
741                                 $terms = "'" . implode( "','", array_map( 'sanitize_title_for_query', $terms ) ) . "'";
742                                 $terms = $wpdb->get_col( "
743                                         SELECT $wpdb->term_taxonomy.$resulting_field
744                                         FROM $wpdb->term_taxonomy
745                                         INNER JOIN $wpdb->terms USING (term_id)
746                                         WHERE taxonomy = '$taxonomy'
747                                         AND $wpdb->terms.$field IN ($terms)
748                                 " );
749                                 break;
750
751                         default:
752                                 $terms = implode( ',', array_map( 'intval', $terms ) );
753                                 $terms = $wpdb->get_col( "
754                                         SELECT $resulting_field
755                                         FROM $wpdb->term_taxonomy
756                                         WHERE taxonomy = '$taxonomy'
757                                         AND term_id IN ($terms)
758                                 " );
759                 }
760         }
761 }
762
763 /**
764  * Get all Term data from database by Term ID.
765  *
766  * The usage of the get_term function is to apply filters to a term object. It
767  * is possible to get a term object from the database before applying the
768  * filters.
769  *
770  * $term ID must be part of $taxonomy, to get from the database. Failure, might
771  * be able to be captured by the hooks. Failure would be the same value as $wpdb
772  * returns for the get_row method.
773  *
774  * There are two hooks, one is specifically for each term, named 'get_term', and
775  * the second is for the taxonomy name, 'term_$taxonomy'. Both hooks gets the
776  * term object, and the taxonomy name as parameters. Both hooks are expected to
777  * return a Term object.
778  *
779  * 'get_term' hook - Takes two parameters the term Object and the taxonomy name.
780  * Must return term object. Used in get_term() as a catch-all filter for every
781  * $term.
782  *
783  * 'get_$taxonomy' hook - Takes two parameters the term Object and the taxonomy
784  * name. Must return term object. $taxonomy will be the taxonomy name, so for
785  * example, if 'category', it would be 'get_category' as the filter name. Useful
786  * for custom taxonomies or plugging into default taxonomies.
787  *
788  * @package WordPress
789  * @subpackage Taxonomy
790  * @since 2.3.0
791  *
792  * @uses $wpdb
793  * @uses sanitize_term() Cleanses the term based on $filter context before returning.
794  * @see sanitize_term_field() The $context param lists the available values for get_term_by() $filter param.
795  *
796  * @param int|object $term If integer, will get from database. If object will apply filters and return $term.
797  * @param string $taxonomy Taxonomy name that $term is part of.
798  * @param string $output Constant OBJECT, ARRAY_A, or ARRAY_N
799  * @param string $filter Optional, default is raw or no WordPress defined filter will applied.
800  * @return mixed|null|WP_Error Term Row from database. Will return null if $term is empty. If taxonomy does not
801  * exist then WP_Error will be returned.
802  */
803 function &get_term($term, $taxonomy, $output = OBJECT, $filter = 'raw') {
804         global $wpdb;
805         $null = null;
806
807         if ( empty($term) ) {
808                 $error = new WP_Error('invalid_term', __('Empty Term'));
809                 return $error;
810         }
811
812         if ( ! taxonomy_exists($taxonomy) ) {
813                 $error = new WP_Error('invalid_taxonomy', __('Invalid Taxonomy'));
814                 return $error;
815         }
816
817         if ( is_object($term) && empty($term->filter) ) {
818                 wp_cache_add($term->term_id, $term, $taxonomy);
819                 $_term = $term;
820         } else {
821                 if ( is_object($term) )
822                         $term = $term->term_id;
823                 $term = (int) $term;
824                 if ( ! $_term = wp_cache_get($term, $taxonomy) ) {
825                         $_term = $wpdb->get_row( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = %s AND t.term_id = %s LIMIT 1", $taxonomy, $term) );
826                         if ( ! $_term )
827                                 return $null;
828                         wp_cache_add($term, $_term, $taxonomy);
829                 }
830         }
831
832         $_term = apply_filters('get_term', $_term, $taxonomy);
833         $_term = apply_filters("get_$taxonomy", $_term, $taxonomy);
834         $_term = sanitize_term($_term, $taxonomy, $filter);
835
836         if ( $output == OBJECT ) {
837                 return $_term;
838         } elseif ( $output == ARRAY_A ) {
839                 $__term = get_object_vars($_term);
840                 return $__term;
841         } elseif ( $output == ARRAY_N ) {
842                 $__term = array_values(get_object_vars($_term));
843                 return $__term;
844         } else {
845                 return $_term;
846         }
847 }
848
849 /**
850  * Get all Term data from database by Term field and data.
851  *
852  * Warning: $value is not escaped for 'name' $field. You must do it yourself, if
853  * required.
854  *
855  * The default $field is 'id', therefore it is possible to also use null for
856  * field, but not recommended that you do so.
857  *
858  * If $value does not exist, the return value will be false. If $taxonomy exists
859  * and $field and $value combinations exist, the Term will be returned.
860  *
861  * @package WordPress
862  * @subpackage Taxonomy
863  * @since 2.3.0
864  *
865  * @uses $wpdb
866  * @uses sanitize_term() Cleanses the term based on $filter context before returning.
867  * @see sanitize_term_field() The $context param lists the available values for get_term_by() $filter param.
868  *
869  * @param string $field Either 'slug', 'name', or 'id'
870  * @param string|int $value Search for this term value
871  * @param string $taxonomy Taxonomy Name
872  * @param string $output Constant OBJECT, ARRAY_A, or ARRAY_N
873  * @param string $filter Optional, default is raw or no WordPress defined filter will applied.
874  * @return mixed Term Row from database. Will return false if $taxonomy does not exist or $term was not found.
875  */
876 function get_term_by($field, $value, $taxonomy, $output = OBJECT, $filter = 'raw') {
877         global $wpdb;
878
879         if ( ! taxonomy_exists($taxonomy) )
880                 return false;
881
882         if ( 'slug' == $field ) {
883                 $field = 't.slug';
884                 $value = sanitize_title($value);
885                 if ( empty($value) )
886                         return false;
887         } else if ( 'name' == $field ) {
888                 // Assume already escaped
889                 $value = stripslashes($value);
890                 $field = 't.name';
891         } else {
892                 $term = get_term( (int) $value, $taxonomy, $output, $filter);
893                 if ( is_wp_error( $term ) )
894                         $term = false;
895                 return $term;
896         }
897
898         $term = $wpdb->get_row( $wpdb->prepare( "SELECT t.*, tt.* FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy = %s AND $field = %s LIMIT 1", $taxonomy, $value) );
899         if ( !$term )
900                 return false;
901
902         wp_cache_add($term->term_id, $term, $taxonomy);
903
904         $term = apply_filters('get_term', $term, $taxonomy);
905         $term = apply_filters("get_$taxonomy", $term, $taxonomy);
906         $term = sanitize_term($term, $taxonomy, $filter);
907
908         if ( $output == OBJECT ) {
909                 return $term;
910         } elseif ( $output == ARRAY_A ) {
911                 return get_object_vars($term);
912         } elseif ( $output == ARRAY_N ) {
913                 return array_values(get_object_vars($term));
914         } else {
915                 return $term;
916         }
917 }
918
919 /**
920  * Merge all term children into a single array of their IDs.
921  *
922  * This recursive function will merge all of the children of $term into the same
923  * array of term IDs. Only useful for taxonomies which are hierarchical.
924  *
925  * Will return an empty array if $term does not exist in $taxonomy.
926  *
927  * @package WordPress
928  * @subpackage Taxonomy
929  * @since 2.3.0
930  *
931  * @uses $wpdb
932  * @uses _get_term_hierarchy()
933  * @uses get_term_children() Used to get the children of both $taxonomy and the parent $term
934  *
935  * @param string $term_id ID of Term to get children
936  * @param string $taxonomy Taxonomy Name
937  * @return array|WP_Error List of Term Objects. WP_Error returned if $taxonomy does not exist
938  */
939 function get_term_children( $term_id, $taxonomy ) {
940         if ( ! taxonomy_exists($taxonomy) )
941                 return new WP_Error('invalid_taxonomy', __('Invalid Taxonomy'));
942
943         $term_id = intval( $term_id );
944
945         $terms = _get_term_hierarchy($taxonomy);
946
947         if ( ! isset($terms[$term_id]) )
948                 return array();
949
950         $children = $terms[$term_id];
951
952         foreach ( (array) $terms[$term_id] as $child ) {
953                 if ( isset($terms[$child]) )
954                         $children = array_merge($children, get_term_children($child, $taxonomy));
955         }
956
957         return $children;
958 }
959
960 /**
961  * Get sanitized Term field.
962  *
963  * Does checks for $term, based on the $taxonomy. The function is for contextual
964  * reasons and for simplicity of usage. See sanitize_term_field() for more
965  * information.
966  *
967  * @package WordPress
968  * @subpackage Taxonomy
969  * @since 2.3.0
970  *
971  * @uses sanitize_term_field() Passes the return value in sanitize_term_field on success.
972  *
973  * @param string $field Term field to fetch
974  * @param int $term Term ID
975  * @param string $taxonomy Taxonomy Name
976  * @param string $context Optional, default is display. Look at sanitize_term_field() for available options.
977  * @return mixed Will return an empty string if $term is not an object or if $field is not set in $term.
978  */
979 function get_term_field( $field, $term, $taxonomy, $context = 'display' ) {
980         $term = (int) $term;
981         $term = get_term( $term, $taxonomy );
982         if ( is_wp_error($term) )
983                 return $term;
984
985         if ( !is_object($term) )
986                 return '';
987
988         if ( !isset($term->$field) )
989                 return '';
990
991         return sanitize_term_field($field, $term->$field, $term->term_id, $taxonomy, $context);
992 }
993
994 /**
995  * Sanitizes Term for editing.
996  *
997  * Return value is sanitize_term() and usage is for sanitizing the term for
998  * editing. Function is for contextual and simplicity.
999  *
1000  * @package WordPress
1001  * @subpackage Taxonomy
1002  * @since 2.3.0
1003  *
1004  * @uses sanitize_term() Passes the return value on success
1005  *
1006  * @param int|object $id Term ID or Object
1007  * @param string $taxonomy Taxonomy Name
1008  * @return mixed|null|WP_Error Will return empty string if $term is not an object.
1009  */
1010 function get_term_to_edit( $id, $taxonomy ) {
1011         $term = get_term( $id, $taxonomy );
1012
1013         if ( is_wp_error($term) )
1014                 return $term;
1015
1016         if ( !is_object($term) )
1017                 return '';
1018
1019         return sanitize_term($term, $taxonomy, 'edit');
1020 }
1021
1022 /**
1023  * Retrieve the terms in a given taxonomy or list of taxonomies.
1024  *
1025  * You can fully inject any customizations to the query before it is sent, as
1026  * well as control the output with a filter.
1027  *
1028  * The 'get_terms' filter will be called when the cache has the term and will
1029  * pass the found term along with the array of $taxonomies and array of $args.
1030  * This filter is also called before the array of terms is passed and will pass
1031  * the array of terms, along with the $taxonomies and $args.
1032  *
1033  * The 'list_terms_exclusions' filter passes the compiled exclusions along with
1034  * the $args.
1035  *
1036  * The 'get_terms_orderby' filter passes the ORDER BY clause for the query
1037  * along with the $args array.
1038  *
1039  * The 'get_terms_fields' filter passes the fields for the SELECT query
1040  * along with the $args array.
1041  *
1042  * The list of arguments that $args can contain, which will overwrite the defaults:
1043  *
1044  * orderby - Default is 'name'. Can be name, count, term_group, slug or nothing
1045  * (will use term_id), Passing a custom value other than these will cause it to
1046  * order based on the custom value.
1047  *
1048  * order - Default is ASC. Can use DESC.
1049  *
1050  * hide_empty - Default is true. Will not return empty terms, which means
1051  * terms whose count is 0 according to the given taxonomy.
1052  *
1053  * exclude - Default is an empty array.  An array, comma- or space-delimited string
1054  * of term ids to exclude from the return array.  If 'include' is non-empty,
1055  * 'exclude' is ignored.
1056  *
1057  * exclude_tree - Default is an empty array.  An array, comma- or space-delimited
1058  * string of term ids to exclude from the return array, along with all of their
1059  * descendant terms according to the primary taxonomy.  If 'include' is non-empty,
1060  * 'exclude_tree' is ignored.
1061  *
1062  * include - Default is an empty array.  An array, comma- or space-delimited string
1063  * of term ids to include in the return array.
1064  *
1065  * number - The maximum number of terms to return.  Default is to return them all.
1066  *
1067  * offset - The number by which to offset the terms query.
1068  *
1069  * fields - Default is 'all', which returns an array of term objects.
1070  * If 'fields' is 'ids' or 'names', returns an array of
1071  * integers or strings, respectively.
1072  *
1073  * slug - Returns terms whose "slug" matches this value. Default is empty string.
1074  *
1075  * hierarchical - Whether to include terms that have non-empty descendants
1076  * (even if 'hide_empty' is set to true).
1077  *
1078  * search - Returned terms' names will contain the value of 'search',
1079  * case-insensitive.  Default is an empty string.
1080  *
1081  * name__like - Returned terms' names will begin with the value of 'name__like',
1082  * case-insensitive. Default is empty string.
1083  *
1084  * The argument 'pad_counts', if set to true will include the quantity of a term's
1085  * children in the quantity of each term's "count" object variable.
1086  *
1087  * The 'get' argument, if set to 'all' instead of its default empty string,
1088  * returns terms regardless of ancestry or whether the terms are empty.
1089  *
1090  * The 'child_of' argument, when used, should be set to the integer of a term ID.  Its default
1091  * is 0.  If set to a non-zero value, all returned terms will be descendants
1092  * of that term according to the given taxonomy.  Hence 'child_of' is set to 0
1093  * if more than one taxonomy is passed in $taxonomies, because multiple taxonomies
1094  * make term ancestry ambiguous.
1095  *
1096  * The 'parent' argument, when used, should be set to the integer of a term ID.  Its default is
1097  * the empty string '', which has a different meaning from the integer 0.
1098  * If set to an integer value, all returned terms will have as an immediate
1099  * ancestor the term whose ID is specified by that integer according to the given taxonomy.
1100  * The 'parent' argument is different from 'child_of' in that a term X is considered a 'parent'
1101  * of term Y only if term X is the father of term Y, not its grandfather or great-grandfather, etc.
1102  *
1103  * @package WordPress
1104  * @subpackage Taxonomy
1105  * @since 2.3.0
1106  *
1107  * @uses $wpdb
1108  * @uses wp_parse_args() Merges the defaults with those defined by $args and allows for strings.
1109  *
1110  * @param string|array $taxonomies Taxonomy name or list of Taxonomy names
1111  * @param string|array $args The values of what to search for when returning terms
1112  * @return array|WP_Error List of Term Objects and their children. Will return WP_Error, if any of $taxonomies do not exist.
1113  */
1114 function &get_terms($taxonomies, $args = '') {
1115         global $wpdb;
1116         $empty_array = array();
1117
1118         $single_taxonomy = false;
1119         if ( !is_array($taxonomies) ) {
1120                 $single_taxonomy = true;
1121                 $taxonomies = array($taxonomies);
1122         }
1123
1124         foreach ( $taxonomies as $taxonomy ) {
1125                 if ( ! taxonomy_exists($taxonomy) ) {
1126                         $error = & new WP_Error('invalid_taxonomy', __('Invalid Taxonomy'));
1127                         return $error;
1128                 }
1129         }
1130
1131         $defaults = array('orderby' => 'name', 'order' => 'ASC',
1132                 'hide_empty' => true, 'exclude' => array(), 'exclude_tree' => array(), 'include' => array(),
1133                 'number' => '', 'fields' => 'all', 'slug' => '', 'parent' => '',
1134                 'hierarchical' => true, 'child_of' => 0, 'get' => '', 'name__like' => '',
1135                 'pad_counts' => false, 'offset' => '', 'search' => '');
1136         $args = wp_parse_args( $args, $defaults );
1137         $args['number'] = absint( $args['number'] );
1138         $args['offset'] = absint( $args['offset'] );
1139         if ( !$single_taxonomy || !is_taxonomy_hierarchical($taxonomies[0]) ||
1140                 '' !== $args['parent'] ) {
1141                 $args['child_of'] = 0;
1142                 $args['hierarchical'] = false;
1143                 $args['pad_counts'] = false;
1144         }
1145
1146         if ( 'all' == $args['get'] ) {
1147                 $args['child_of'] = 0;
1148                 $args['hide_empty'] = 0;
1149                 $args['hierarchical'] = false;
1150                 $args['pad_counts'] = false;
1151         }
1152
1153         $args = apply_filters( 'get_terms_args', $args, $taxonomies );
1154
1155         extract($args, EXTR_SKIP);
1156
1157         if ( $child_of ) {
1158                 $hierarchy = _get_term_hierarchy($taxonomies[0]);
1159                 if ( !isset($hierarchy[$child_of]) )
1160                         return $empty_array;
1161         }
1162
1163         if ( $parent ) {
1164                 $hierarchy = _get_term_hierarchy($taxonomies[0]);
1165                 if ( !isset($hierarchy[$parent]) )
1166                         return $empty_array;
1167         }
1168
1169         // $args can be whatever, only use the args defined in defaults to compute the key
1170         $filter_key = ( has_filter('list_terms_exclusions') ) ? serialize($GLOBALS['wp_filter']['list_terms_exclusions']) : '';
1171         $key = md5( serialize( compact(array_keys($defaults)) ) . serialize( $taxonomies ) . $filter_key );
1172         $last_changed = wp_cache_get('last_changed', 'terms');
1173         if ( !$last_changed ) {
1174                 $last_changed = time();
1175                 wp_cache_set('last_changed', $last_changed, 'terms');
1176         }
1177         $cache_key = "get_terms:$key:$last_changed";
1178         $cache = wp_cache_get( $cache_key, 'terms' );
1179         if ( false !== $cache ) {
1180                 $cache = apply_filters('get_terms', $cache, $taxonomies, $args);
1181                 return $cache;
1182         }
1183
1184         $_orderby = strtolower($orderby);
1185         if ( 'count' == $_orderby )
1186                 $orderby = 'tt.count';
1187         else if ( 'name' == $_orderby )
1188                 $orderby = 't.name';
1189         else if ( 'slug' == $_orderby )
1190                 $orderby = 't.slug';
1191         else if ( 'term_group' == $_orderby )
1192                 $orderby = 't.term_group';
1193         else if ( 'none' == $_orderby )
1194                 $orderby = '';
1195         elseif ( empty($_orderby) || 'id' == $_orderby )
1196                 $orderby = 't.term_id';
1197
1198         $orderby = apply_filters( 'get_terms_orderby', $orderby, $args );
1199
1200         if ( !empty($orderby) )
1201                 $orderby = "ORDER BY $orderby";
1202         else
1203                 $order = '';
1204
1205         $where = "tt.taxonomy IN ('" . implode("', '", $taxonomies) . "')";
1206         $inclusions = '';
1207         if ( !empty($include) ) {
1208                 $exclude = '';
1209                 $exclude_tree = '';
1210                 $interms = wp_parse_id_list($include);
1211                 foreach ( $interms as $interm ) {
1212                         if ( empty($inclusions) )
1213                                 $inclusions = ' AND ( t.term_id = ' . intval($interm) . ' ';
1214                         else
1215                                 $inclusions .= ' OR t.term_id = ' . intval($interm) . ' ';
1216                 }
1217         }
1218
1219         if ( !empty($inclusions) )
1220                 $inclusions .= ')';
1221         $where .= $inclusions;
1222
1223         $exclusions = '';
1224         if ( !empty( $exclude_tree ) ) {
1225                 $excluded_trunks = wp_parse_id_list($exclude_tree);
1226                 foreach ( $excluded_trunks as $extrunk ) {
1227                         $excluded_children = (array) get_terms($taxonomies[0], array('child_of' => intval($extrunk), 'fields' => 'ids', 'hide_empty' => 0));
1228                         $excluded_children[] = $extrunk;
1229                         foreach( $excluded_children as $exterm ) {
1230                                 if ( empty($exclusions) )
1231                                         $exclusions = ' AND ( t.term_id <> ' . intval($exterm) . ' ';
1232                                 else
1233                                         $exclusions .= ' AND t.term_id <> ' . intval($exterm) . ' ';
1234                         }
1235                 }
1236         }
1237
1238         if ( !empty($exclude) ) {
1239                 $exterms = wp_parse_id_list($exclude);
1240                 foreach ( $exterms as $exterm ) {
1241                         if ( empty($exclusions) )
1242                                 $exclusions = ' AND ( t.term_id <> ' . intval($exterm) . ' ';
1243                         else
1244                                 $exclusions .= ' AND t.term_id <> ' . intval($exterm) . ' ';
1245                 }
1246         }
1247
1248         if ( !empty($exclusions) )
1249                 $exclusions .= ')';
1250         $exclusions = apply_filters('list_terms_exclusions', $exclusions, $args );
1251         $where .= $exclusions;
1252
1253         if ( !empty($slug) ) {
1254                 $slug = sanitize_title($slug);
1255                 $where .= " AND t.slug = '$slug'";
1256         }
1257
1258         if ( !empty($name__like) )
1259                 $where .= " AND t.name LIKE '" . like_escape( $name__like ) . "%'";
1260
1261         if ( '' !== $parent ) {
1262                 $parent = (int) $parent;
1263                 $where .= " AND tt.parent = '$parent'";
1264         }
1265
1266         if ( $hide_empty && !$hierarchical )
1267                 $where .= ' AND tt.count > 0';
1268
1269         // don't limit the query results when we have to descend the family tree
1270         if ( ! empty($number) && ! $hierarchical && empty( $child_of ) && '' === $parent ) {
1271                 if ( $offset )
1272                         $limits = 'LIMIT ' . $offset . ',' . $number;
1273                 else
1274                         $limits = 'LIMIT ' . $number;
1275         } else {
1276                 $limits = '';
1277         }
1278
1279         if ( !empty($search) ) {
1280                 $search = like_escape($search);
1281                 $where .= " AND (t.name LIKE '%$search%')";
1282         }
1283
1284         $selects = array();
1285         switch ( $fields ) {
1286                 case 'all':
1287                         $selects = array('t.*', 'tt.*');
1288                         break;
1289                 case 'ids':
1290                 case 'id=>parent':
1291                         $selects = array('t.term_id', 'tt.parent', 'tt.count');
1292                         break;
1293                 case 'names':
1294                         $selects = array('t.term_id', 'tt.parent', 'tt.count', 't.name');
1295                         break;
1296                 case 'count':
1297                         $orderby = '';
1298                         $order = '';
1299                         $selects = array('COUNT(*)');
1300         }
1301
1302         $_fields = $fields;
1303
1304         $fields = implode(', ', apply_filters( 'get_terms_fields', $selects, $args ));
1305
1306         $join = "INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id";
1307
1308         $pieces = array( 'fields', 'join', 'where', 'orderby', 'order', 'limits' );
1309         $clauses = apply_filters( 'terms_clauses', compact( $pieces ), $taxonomies, $args );
1310         foreach ( $pieces as $piece )
1311                 $$piece = isset( $clauses[ $piece ] ) ? $clauses[ $piece ] : '';
1312
1313         $query = "SELECT $fields FROM $wpdb->terms AS t $join WHERE $where $orderby $order $limits";
1314
1315         $fields = $_fields;
1316
1317         if ( 'count' == $fields ) {
1318                 $term_count = $wpdb->get_var($query);
1319                 return $term_count;
1320         }
1321
1322         $terms = $wpdb->get_results($query);
1323         if ( 'all' == $fields ) {
1324                 update_term_cache($terms);
1325         }
1326
1327         if ( empty($terms) ) {
1328                 wp_cache_add( $cache_key, array(), 'terms', 86400 ); // one day
1329                 $terms = apply_filters('get_terms', array(), $taxonomies, $args);
1330                 return $terms;
1331         }
1332
1333         if ( $child_of ) {
1334                 $children = _get_term_hierarchy($taxonomies[0]);
1335                 if ( ! empty($children) )
1336                         $terms = & _get_term_children($child_of, $terms, $taxonomies[0]);
1337         }
1338
1339         // Update term counts to include children.
1340         if ( $pad_counts && 'all' == $fields )
1341                 _pad_term_counts($terms, $taxonomies[0]);
1342
1343         // Make sure we show empty categories that have children.
1344         if ( $hierarchical && $hide_empty && is_array($terms) ) {
1345                 foreach ( $terms as $k => $term ) {
1346                         if ( ! $term->count ) {
1347                                 $children = _get_term_children($term->term_id, $terms, $taxonomies[0]);
1348                                 if ( is_array($children) )
1349                                         foreach ( $children as $child )
1350                                                 if ( $child->count )
1351                                                         continue 2;
1352
1353                                 // It really is empty
1354                                 unset($terms[$k]);
1355                         }
1356                 }
1357         }
1358         reset ( $terms );
1359
1360         $_terms = array();
1361         if ( 'id=>parent' == $fields ) {
1362                 while ( $term = array_shift($terms) )
1363                         $_terms[$term->term_id] = $term->parent;
1364                 $terms = $_terms;
1365         } elseif ( 'ids' == $fields ) {
1366                 while ( $term = array_shift($terms) )
1367                         $_terms[] = $term->term_id;
1368                 $terms = $_terms;
1369         } elseif ( 'names' == $fields ) {
1370                 while ( $term = array_shift($terms) )
1371                         $_terms[] = $term->name;
1372                 $terms = $_terms;
1373         }
1374
1375         if ( 0 < $number && intval(@count($terms)) > $number ) {
1376                 $terms = array_slice($terms, $offset, $number);
1377         }
1378
1379         wp_cache_add( $cache_key, $terms, 'terms', 86400 ); // one day
1380
1381         $terms = apply_filters('get_terms', $terms, $taxonomies, $args);
1382         return $terms;
1383 }
1384
1385 /**
1386  * Check if Term exists.
1387  *
1388  * Returns the index of a defined term, or 0 (false) if the term doesn't exist.
1389  *
1390  * Formerly is_term(), introduced in 2.3.0.
1391  *
1392  * @package WordPress
1393  * @subpackage Taxonomy
1394  * @since 3.0.0
1395  *
1396  * @uses $wpdb
1397  *
1398  * @param int|string $term The term to check
1399  * @param string $taxonomy The taxonomy name to use
1400  * @param int $parent ID of parent term under which to confine the exists search.
1401  * @return mixed Get the term id or Term Object, if exists.
1402  */
1403 function term_exists($term, $taxonomy = '', $parent = 0) {
1404         global $wpdb;
1405
1406         $select = "SELECT term_id FROM $wpdb->terms as t WHERE ";
1407         $tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE ";
1408
1409         if ( is_int($term) ) {
1410                 if ( 0 == $term )
1411                         return 0;
1412                 $where = 't.term_id = %d';
1413                 if ( !empty($taxonomy) )
1414                         return $wpdb->get_row( $wpdb->prepare( $tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy ), ARRAY_A );
1415                 else
1416                         return $wpdb->get_var( $wpdb->prepare( $select . $where, $term ) );
1417         }
1418
1419         $term = trim( stripslashes( $term ) );
1420
1421         if ( '' === $slug = sanitize_title($term) )
1422                 return 0;
1423
1424         $where = 't.slug = %s';
1425         $else_where = 't.name = %s';
1426         $where_fields = array($slug);
1427         $else_where_fields = array($term);
1428         if ( !empty($taxonomy) ) {
1429                 $parent = (int) $parent;
1430                 if ( $parent > 0 ) {
1431                         $where_fields[] = $parent;
1432                         $else_where_fields[] = $parent;
1433                         $where .= ' AND tt.parent = %d';
1434                         $else_where .= ' AND tt.parent = %d';
1435                 }
1436
1437                 $where_fields[] = $taxonomy;
1438                 $else_where_fields[] = $taxonomy;
1439
1440                 if ( $result = $wpdb->get_row( $wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A) )
1441                         return $result;
1442
1443                 return $wpdb->get_row( $wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $else_where AND tt.taxonomy = %s", $else_where_fields), ARRAY_A);
1444         }
1445
1446         if ( $result = $wpdb->get_var( $wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields) ) )
1447                 return $result;
1448
1449         return $wpdb->get_var( $wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $else_where", $else_where_fields) );
1450 }
1451
1452 /**
1453  * Sanitize Term all fields.
1454  *
1455  * Relys on sanitize_term_field() to sanitize the term. The difference is that
1456  * this function will sanitize <strong>all</strong> fields. The context is based
1457  * on sanitize_term_field().
1458  *
1459  * The $term is expected to be either an array or an object.
1460  *
1461  * @package WordPress
1462  * @subpackage Taxonomy
1463  * @since 2.3.0
1464  *
1465  * @uses sanitize_term_field Used to sanitize all fields in a term
1466  *
1467  * @param array|object $term The term to check
1468  * @param string $taxonomy The taxonomy name to use
1469  * @param string $context Default is 'display'.
1470  * @return array|object Term with all fields sanitized
1471  */
1472 function sanitize_term($term, $taxonomy, $context = 'display') {
1473
1474         if ( 'raw' == $context )
1475                 return $term;
1476
1477         $fields = array('term_id', 'name', 'description', 'slug', 'count', 'parent', 'term_group');
1478
1479         $do_object = false;
1480         if ( is_object($term) )
1481                 $do_object = true;
1482
1483         $term_id = $do_object ? $term->term_id : (isset($term['term_id']) ? $term['term_id'] : 0);
1484
1485         foreach ( (array) $fields as $field ) {
1486                 if ( $do_object ) {
1487                         if ( isset($term->$field) )
1488                                 $term->$field = sanitize_term_field($field, $term->$field, $term_id, $taxonomy, $context);
1489                 } else {
1490                         if ( isset($term[$field]) )
1491                                 $term[$field] = sanitize_term_field($field, $term[$field], $term_id, $taxonomy, $context);
1492                 }
1493         }
1494
1495         if ( $do_object )
1496                 $term->filter = $context;
1497         else
1498                 $term['filter'] = $context;
1499
1500         return $term;
1501 }
1502
1503 /**
1504  * Cleanse the field value in the term based on the context.
1505  *
1506  * Passing a term field value through the function should be assumed to have
1507  * cleansed the value for whatever context the term field is going to be used.
1508  *
1509  * If no context or an unsupported context is given, then default filters will
1510  * be applied.
1511  *
1512  * There are enough filters for each context to support a custom filtering
1513  * without creating your own filter function. Simply create a function that
1514  * hooks into the filter you need.
1515  *
1516  * @package WordPress
1517  * @subpackage Taxonomy
1518  * @since 2.3.0
1519  *
1520  * @uses $wpdb
1521  *
1522  * @param string $field Term field to sanitize
1523  * @param string $value Search for this term value
1524  * @param int $term_id Term ID
1525  * @param string $taxonomy Taxonomy Name
1526  * @param string $context Either edit, db, display, attribute, or js.
1527  * @return mixed sanitized field
1528  */
1529 function sanitize_term_field($field, $value, $term_id, $taxonomy, $context) {
1530         if ( 'parent' == $field  || 'term_id' == $field || 'count' == $field || 'term_group' == $field ) {
1531                 $value = (int) $value;
1532                 if ( $value < 0 )
1533                         $value = 0;
1534         }
1535
1536         if ( 'raw' == $context )
1537                 return $value;
1538
1539         if ( 'edit' == $context ) {
1540                 $value = apply_filters("edit_term_{$field}", $value, $term_id, $taxonomy);
1541                 $value = apply_filters("edit_{$taxonomy}_{$field}", $value, $term_id);
1542                 if ( 'description' == $field )
1543                         $value = esc_html($value); // textarea_escaped
1544                 else
1545                         $value = esc_attr($value);
1546         } else if ( 'db' == $context ) {
1547                 $value = apply_filters("pre_term_{$field}", $value, $taxonomy);
1548                 $value = apply_filters("pre_{$taxonomy}_{$field}", $value);
1549                 // Back compat filters
1550                 if ( 'slug' == $field )
1551                         $value = apply_filters('pre_category_nicename', $value);
1552
1553         } else if ( 'rss' == $context ) {
1554                 $value = apply_filters("term_{$field}_rss", $value, $taxonomy);
1555                 $value = apply_filters("{$taxonomy}_{$field}_rss", $value);
1556         } else {
1557                 // Use display filters by default.
1558                 $value = apply_filters("term_{$field}", $value, $term_id, $taxonomy, $context);
1559                 $value = apply_filters("{$taxonomy}_{$field}", $value, $term_id, $context);
1560         }
1561
1562         if ( 'attribute' == $context )
1563                 $value = esc_attr($value);
1564         else if ( 'js' == $context )
1565                 $value = esc_js($value);
1566
1567         return $value;
1568 }
1569
1570 /**
1571  * Count how many terms are in Taxonomy.
1572  *
1573  * Default $args is 'hide_empty' which can be 'hide_empty=true' or array('hide_empty' => true).
1574  *
1575  * @package WordPress
1576  * @subpackage Taxonomy
1577  * @since 2.3.0
1578  *
1579  * @uses get_terms()
1580  * @uses wp_parse_args() Turns strings into arrays and merges defaults into an array.
1581  *
1582  * @param string $taxonomy Taxonomy name
1583  * @param array|string $args Overwrite defaults. See get_terms()
1584  * @return int How many terms are in $taxonomy
1585  */
1586 function wp_count_terms( $taxonomy, $args = array() ) {
1587         $defaults = array('hide_empty' => false);
1588         $args = wp_parse_args($args, $defaults);
1589
1590         // backwards compatibility
1591         if ( isset($args['ignore_empty']) ) {
1592                 $args['hide_empty'] = $args['ignore_empty'];
1593                 unset($args['ignore_empty']);
1594         }
1595
1596         $args['fields'] = 'count';
1597
1598         return get_terms($taxonomy, $args);
1599 }
1600
1601 /**
1602  * Will unlink the object from the taxonomy or taxonomies.
1603  *
1604  * Will remove all relationships between the object and any terms in
1605  * a particular taxonomy or taxonomies. Does not remove the term or
1606  * taxonomy itself.
1607  *
1608  * @package WordPress
1609  * @subpackage Taxonomy
1610  * @since 2.3.0
1611  * @uses $wpdb
1612  *
1613  * @param int $object_id The term Object Id that refers to the term
1614  * @param string|array $taxonomies List of Taxonomy Names or single Taxonomy name.
1615  */
1616 function wp_delete_object_term_relationships( $object_id, $taxonomies ) {
1617         global $wpdb;
1618
1619         $object_id = (int) $object_id;
1620
1621         if ( !is_array($taxonomies) )
1622                 $taxonomies = array($taxonomies);
1623
1624         foreach ( (array) $taxonomies as $taxonomy ) {
1625                 $tt_ids = wp_get_object_terms($object_id, $taxonomy, array('fields' => 'tt_ids'));
1626                 $in_tt_ids = "'" . implode("', '", $tt_ids) . "'";
1627                 do_action( 'delete_term_relationships', $object_id, $tt_ids );
1628                 $wpdb->query( $wpdb->prepare("DELETE FROM $wpdb->term_relationships WHERE object_id = %d AND term_taxonomy_id IN ($in_tt_ids)", $object_id) );
1629                 do_action( 'deleted_term_relationships', $object_id, $tt_ids );
1630                 wp_update_term_count($tt_ids, $taxonomy);
1631         }
1632 }
1633
1634 /**
1635  * Removes a term from the database.
1636  *
1637  * If the term is a parent of other terms, then the children will be updated to
1638  * that term's parent.
1639  *
1640  * The $args 'default' will only override the terms found, if there is only one
1641  * term found. Any other and the found terms are used.
1642  *
1643  * The $args 'force_default' will force the term supplied as default to be
1644  * assigned even if the object was not going to be termless
1645  * @package WordPress
1646  * @subpackage Taxonomy
1647  * @since 2.3.0
1648  *
1649  * @uses $wpdb
1650  * @uses do_action() Calls both 'delete_term' and 'delete_$taxonomy' action
1651  *      hooks, passing term object, term id. 'delete_term' gets an additional
1652  *      parameter with the $taxonomy parameter.
1653  *
1654  * @param int $term Term ID
1655  * @param string $taxonomy Taxonomy Name
1656  * @param array|string $args Optional. Change 'default' term id and override found term ids.
1657  * @return bool|WP_Error Returns false if not term; true if completes delete action.
1658  */
1659 function wp_delete_term( $term, $taxonomy, $args = array() ) {
1660         global $wpdb;
1661
1662         $term = (int) $term;
1663
1664         if ( ! $ids = term_exists($term, $taxonomy) )
1665                 return false;
1666         if ( is_wp_error( $ids ) )
1667                 return $ids;
1668
1669         $tt_id = $ids['term_taxonomy_id'];
1670
1671         $defaults = array();
1672
1673         if ( 'category' == $taxonomy ) {
1674                 $defaults['default'] = get_option( 'default_category' );
1675                 if ( $defaults['default'] == $term )
1676                         return 0; // Don't delete the default category
1677         }
1678
1679         $args = wp_parse_args($args, $defaults);
1680         extract($args, EXTR_SKIP);
1681
1682         if ( isset( $default ) ) {
1683                 $default = (int) $default;
1684                 if ( ! term_exists($default, $taxonomy) )
1685                         unset($default);
1686         }
1687
1688         // Update children to point to new parent
1689         if ( is_taxonomy_hierarchical($taxonomy) ) {
1690                 $term_obj = get_term($term, $taxonomy);
1691                 if ( is_wp_error( $term_obj ) )
1692                         return $term_obj;
1693                 $parent = $term_obj->parent;
1694
1695                 $edit_tt_ids = $wpdb->get_col( "SELECT `term_taxonomy_id` FROM $wpdb->term_taxonomy WHERE `parent` = " . (int)$term_obj->term_id );
1696                 do_action( 'edit_term_taxonomies', $edit_tt_ids );
1697                 $wpdb->update( $wpdb->term_taxonomy, compact( 'parent' ), array( 'parent' => $term_obj->term_id) + compact( 'taxonomy' ) );
1698                 do_action( 'edited_term_taxonomies', $edit_tt_ids );
1699         }
1700
1701         $objects = $wpdb->get_col( $wpdb->prepare( "SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id = %d", $tt_id ) );
1702
1703         foreach ( (array) $objects as $object ) {
1704                 $terms = wp_get_object_terms($object, $taxonomy, array('fields' => 'ids', 'orderby' => 'none'));
1705                 if ( 1 == count($terms) && isset($default) ) {
1706                         $terms = array($default);
1707                 } else {
1708                         $terms = array_diff($terms, array($term));
1709                         if (isset($default) && isset($force_default) && $force_default)
1710                                 $terms = array_merge($terms, array($default));
1711                 }
1712                 $terms = array_map('intval', $terms);
1713                 wp_set_object_terms($object, $terms, $taxonomy);
1714         }
1715
1716         // Clean the relationship caches for all object types using this term
1717         $tax_object = get_taxonomy( $taxonomy );
1718         foreach ( $tax_object->object_type as $object_type )
1719                 clean_object_term_cache( $objects, $object_type );
1720
1721         do_action( 'delete_term_taxonomy', $tt_id );
1722         $wpdb->query( $wpdb->prepare( "DELETE FROM $wpdb->term_taxonomy WHERE term_taxonomy_id = %d", $tt_id ) );
1723         do_action( 'deleted_term_taxonomy', $tt_id );
1724
1725         // Delete the term if no taxonomies use it.
1726         if ( !$wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_taxonomy WHERE term_id = %d", $term) ) )
1727                 $wpdb->query( $wpdb->prepare( "DELETE FROM $wpdb->terms WHERE term_id = %d", $term) );
1728
1729         clean_term_cache($term, $taxonomy);
1730
1731         do_action('delete_term', $term, $tt_id, $taxonomy);
1732         do_action("delete_$taxonomy", $term, $tt_id);
1733
1734         return true;
1735 }
1736
1737 /**
1738  * Deletes one existing category.
1739  *
1740  * @since 2.0.0
1741  * @uses wp_delete_term()
1742  *
1743  * @param int $cat_ID
1744  * @return mixed Returns true if completes delete action; false if term doesnt exist;
1745  *      Zero on attempted deletion of default Category; WP_Error object is also a possibility.
1746  */
1747 function wp_delete_category( $cat_ID ) {
1748         return wp_delete_term( $cat_ID, 'category' );
1749 }
1750
1751 /**
1752  * Retrieves the terms associated with the given object(s), in the supplied taxonomies.
1753  *
1754  * The following information has to do the $args parameter and for what can be
1755  * contained in the string or array of that parameter, if it exists.
1756  *
1757  * The first argument is called, 'orderby' and has the default value of 'name'.
1758  * The other value that is supported is 'count'.
1759  *
1760  * The second argument is called, 'order' and has the default value of 'ASC'.
1761  * The only other value that will be acceptable is 'DESC'.
1762  *
1763  * The final argument supported is called, 'fields' and has the default value of
1764  * 'all'. There are multiple other options that can be used instead. Supported
1765  * values are as follows: 'all', 'ids', 'names', and finally
1766  * 'all_with_object_id'.
1767  *
1768  * The fields argument also decides what will be returned. If 'all' or
1769  * 'all_with_object_id' is choosen or the default kept intact, then all matching
1770  * terms objects will be returned. If either 'ids' or 'names' is used, then an
1771  * array of all matching term ids or term names will be returned respectively.
1772  *
1773  * @package WordPress
1774  * @subpackage Taxonomy
1775  * @since 2.3.0
1776  * @uses $wpdb
1777  *
1778  * @param int|array $object_ids The ID(s) of the object(s) to retrieve.
1779  * @param string|array $taxonomies The taxonomies to retrieve terms from.
1780  * @param array|string $args Change what is returned
1781  * @return array|WP_Error The requested term data or empty array if no terms found. WP_Error if $taxonomy does not exist.
1782  */
1783 function wp_get_object_terms($object_ids, $taxonomies, $args = array()) {
1784         global $wpdb;
1785
1786         if ( !is_array($taxonomies) )
1787                 $taxonomies = array($taxonomies);
1788
1789         foreach ( (array) $taxonomies as $taxonomy ) {
1790                 if ( ! taxonomy_exists($taxonomy) )
1791                         return new WP_Error('invalid_taxonomy', __('Invalid Taxonomy'));
1792         }
1793
1794         if ( !is_array($object_ids) )
1795                 $object_ids = array($object_ids);
1796         $object_ids = array_map('intval', $object_ids);
1797
1798         $defaults = array('orderby' => 'name', 'order' => 'ASC', 'fields' => 'all');
1799         $args = wp_parse_args( $args, $defaults );
1800
1801         $terms = array();
1802         if ( count($taxonomies) > 1 ) {
1803                 foreach ( $taxonomies as $index => $taxonomy ) {
1804                         $t = get_taxonomy($taxonomy);
1805                         if ( isset($t->args) && is_array($t->args) && $args != array_merge($args, $t->args) ) {
1806                                 unset($taxonomies[$index]);
1807                                 $terms = array_merge($terms, wp_get_object_terms($object_ids, $taxonomy, array_merge($args, $t->args)));
1808                         }
1809                 }
1810         } else {
1811                 $t = get_taxonomy($taxonomies[0]);
1812                 if ( isset($t->args) && is_array($t->args) )
1813                         $args = array_merge($args, $t->args);
1814         }
1815
1816         extract($args, EXTR_SKIP);
1817
1818         if ( 'count' == $orderby )
1819                 $orderby = 'tt.count';
1820         else if ( 'name' == $orderby )
1821                 $orderby = 't.name';
1822         else if ( 'slug' == $orderby )
1823                 $orderby = 't.slug';
1824         else if ( 'term_group' == $orderby )
1825                 $orderby = 't.term_group';
1826         else if ( 'term_order' == $orderby )
1827                 $orderby = 'tr.term_order';
1828         else if ( 'none' == $orderby ) {
1829                 $orderby = '';
1830                 $order = '';
1831         } else {
1832                 $orderby = 't.term_id';
1833         }
1834
1835         // tt_ids queries can only be none or tr.term_taxonomy_id
1836         if ( ('tt_ids' == $fields) && !empty($orderby) )
1837                 $orderby = 'tr.term_taxonomy_id';
1838
1839         if ( !empty($orderby) )
1840                 $orderby = "ORDER BY $orderby";
1841
1842         $taxonomies = "'" . implode("', '", $taxonomies) . "'";
1843         $object_ids = implode(', ', $object_ids);
1844
1845         $select_this = '';
1846         if ( 'all' == $fields )
1847                 $select_this = 't.*, tt.*';
1848         else if ( 'ids' == $fields )
1849                 $select_this = 't.term_id';
1850         else if ( 'names' == $fields )
1851                 $select_this = 't.name';
1852         else if ( 'all_with_object_id' == $fields )
1853                 $select_this = 't.*, tt.*, tr.object_id';
1854
1855         $query = "SELECT $select_this FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN $wpdb->term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ($taxonomies) AND tr.object_id IN ($object_ids) $orderby $order";
1856
1857         if ( 'all' == $fields || 'all_with_object_id' == $fields ) {
1858                 $terms = array_merge($terms, $wpdb->get_results($query));
1859                 update_term_cache($terms);
1860         } else if ( 'ids' == $fields || 'names' == $fields ) {
1861                 $terms = array_merge($terms, $wpdb->get_col($query));
1862         } else if ( 'tt_ids' == $fields ) {
1863                 $terms = $wpdb->get_col("SELECT tr.term_taxonomy_id FROM $wpdb->term_relationships AS tr INNER JOIN $wpdb->term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tr.object_id IN ($object_ids) AND tt.taxonomy IN ($taxonomies) $orderby $order");
1864         }
1865
1866         if ( ! $terms )
1867                 $terms = array();
1868
1869         return apply_filters('wp_get_object_terms', $terms, $object_ids, $taxonomies, $args);
1870 }
1871
1872 /**
1873  * Adds a new term to the database. Optionally marks it as an alias of an existing term.
1874  *
1875  * Error handling is assigned for the nonexistance of the $taxonomy and $term
1876  * parameters before inserting. If both the term id and taxonomy exist
1877  * previously, then an array will be returned that contains the term id and the
1878  * contents of what is returned. The keys of the array are 'term_id' and
1879  * 'term_taxonomy_id' containing numeric values.
1880  *
1881  * It is assumed that the term does not yet exist or the above will apply. The
1882  * term will be first added to the term table and then related to the taxonomy
1883  * if everything is well. If everything is correct, then several actions will be
1884  * run prior to a filter and then several actions will be run after the filter
1885  * is run.
1886  *
1887  * The arguments decide how the term is handled based on the $args parameter.
1888  * The following is a list of the available overrides and the defaults.
1889  *
1890  * 'alias_of'. There is no default, but if added, expected is the slug that the
1891  * term will be an alias of. Expected to be a string.
1892  *
1893  * 'description'. There is no default. If exists, will be added to the database
1894  * along with the term. Expected to be a string.
1895  *
1896  * 'parent'. Expected to be numeric and default is 0 (zero). Will assign value
1897  * of 'parent' to the term.
1898  *
1899  * 'slug'. Expected to be a string. There is no default.
1900  *
1901  * If 'slug' argument exists then the slug will be checked to see if it is not
1902  * a valid term. If that check succeeds (it is not a valid term), then it is
1903  * added and the term id is given. If it fails, then a check is made to whether
1904  * the taxonomy is hierarchical and the parent argument is not empty. If the
1905  * second check succeeds, the term will be inserted and the term id will be
1906  * given.
1907  *
1908  * @package WordPress
1909  * @subpackage Taxonomy
1910  * @since 2.3.0
1911  * @uses $wpdb
1912  *
1913  * @uses apply_filters() Calls 'pre_insert_term' hook with term and taxonomy as parameters.
1914  * @uses do_action() Calls 'create_term' hook with the term id and taxonomy id as parameters.
1915  * @uses do_action() Calls 'create_$taxonomy' hook with term id and taxonomy id as parameters.
1916  * @uses apply_filters() Calls 'term_id_filter' hook with term id and taxonomy id as parameters.
1917  * @uses do_action() Calls 'created_term' hook with the term id and taxonomy id as parameters.
1918  * @uses do_action() Calls 'created_$taxonomy' hook with term id and taxonomy id as parameters.
1919  *
1920  * @param string $term The term to add or update.
1921  * @param string $taxonomy The taxonomy to which to add the term
1922  * @param array|string $args Change the values of the inserted term
1923  * @return array|WP_Error The Term ID and Term Taxonomy ID
1924  */
1925 function wp_insert_term( $term, $taxonomy, $args = array() ) {
1926         global $wpdb;
1927
1928         if ( ! taxonomy_exists($taxonomy) )
1929                 return new WP_Error('invalid_taxonomy', __('Invalid taxonomy'));
1930
1931         $term = apply_filters( 'pre_insert_term', $term, $taxonomy );
1932                 if ( is_wp_error( $term ) )
1933                         return $term;
1934
1935         if ( is_int($term) && 0 == $term )
1936                 return new WP_Error('invalid_term_id', __('Invalid term ID'));
1937
1938         if ( '' == trim($term) )
1939                 return new WP_Error('empty_term_name', __('A name is required for this term'));
1940
1941         $defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
1942         $args = wp_parse_args($args, $defaults);
1943         $args['name'] = $term;
1944         $args['taxonomy'] = $taxonomy;
1945         $args = sanitize_term($args, $taxonomy, 'db');
1946         extract($args, EXTR_SKIP);
1947
1948         // expected_slashed ($name)
1949         $name = stripslashes($name);
1950         $description = stripslashes($description);
1951
1952         if ( empty($slug) )
1953                 $slug = sanitize_title($name);
1954
1955         $term_group = 0;
1956         if ( $alias_of ) {
1957                 $alias = $wpdb->get_row( $wpdb->prepare( "SELECT term_id, term_group FROM $wpdb->terms WHERE slug = %s", $alias_of) );
1958                 if ( $alias->term_group ) {
1959                         // The alias we want is already in a group, so let's use that one.
1960                         $term_group = $alias->term_group;
1961                 } else {
1962                         // The alias isn't in a group, so let's create a new one and firstly add the alias term to it.
1963                         $term_group = $wpdb->get_var("SELECT MAX(term_group) FROM $wpdb->terms") + 1;
1964                         do_action( 'edit_terms', $alias->term_id );
1965                         $wpdb->update($wpdb->terms, compact('term_group'), array('term_id' => $alias->term_id) );
1966                         do_action( 'edited_terms', $alias->term_id );
1967                 }
1968         }
1969
1970         if ( $term_id = term_exists($slug) ) {
1971                 $existing_term = $wpdb->get_row( $wpdb->prepare( "SELECT name FROM $wpdb->terms WHERE term_id = %d", $term_id), ARRAY_A );
1972                 // We've got an existing term in the same taxonomy, which matches the name of the new term:
1973                 if ( is_taxonomy_hierarchical($taxonomy) && $existing_term['name'] == $name && $exists = term_exists( (int) $term_id, $taxonomy ) ) {
1974                         // Hierarchical, and it matches an existing term, Do not allow same "name" in the same level.
1975                         $siblings = get_terms($taxonomy, array('fields' => 'names', 'get' => 'all', 'parent' => (int)$parent) );
1976                         if ( in_array($name, $siblings) ) {
1977                                 return new WP_Error('term_exists', __('A term with the name provided already exists with this parent.'), $exists['term_id']);
1978                         } else {
1979                                 $slug = wp_unique_term_slug($slug, (object) $args);
1980                                 if ( false === $wpdb->insert( $wpdb->terms, compact( 'name', 'slug', 'term_group' ) ) )
1981                                         return new WP_Error('db_insert_error', __('Could not insert term into the database'), $wpdb->last_error);
1982                                 $term_id = (int) $wpdb->insert_id;
1983                         }
1984                 } elseif ( $existing_term['name'] != $name ) {
1985                         // We've got an existing term, with a different name, Create the new term.
1986                         $slug = wp_unique_term_slug($slug, (object) $args);
1987                         if ( false === $wpdb->insert( $wpdb->terms, compact( 'name', 'slug', 'term_group' ) ) )
1988                                 return new WP_Error('db_insert_error', __('Could not insert term into the database'), $wpdb->last_error);
1989                         $term_id = (int) $wpdb->insert_id;
1990                 } elseif ( $exists = term_exists( (int) $term_id, $taxonomy ) )  {
1991                         // Same name, same slug.
1992                         return new WP_Error('term_exists', __('A term with the name provided already exists.'), $exists['term_id']);
1993                 }
1994         } else {
1995                 // This term does not exist at all in the database, Create it.
1996                 $slug = wp_unique_term_slug($slug, (object) $args);
1997                 if ( false === $wpdb->insert( $wpdb->terms, compact( 'name', 'slug', 'term_group' ) ) )
1998                         return new WP_Error('db_insert_error', __('Could not insert term into the database'), $wpdb->last_error);
1999                 $term_id = (int) $wpdb->insert_id;
2000         }
2001
2002         // Seems unreachable, However, Is used in the case that a term name is provided, which sanitizes to an empty string.
2003         if ( empty($slug) ) {
2004                 $slug = sanitize_title($slug, $term_id);
2005                 do_action( 'edit_terms', $term_id );
2006                 $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
2007                 do_action( 'edited_terms', $term_id );
2008         }
2009
2010         $tt_id = $wpdb->get_var( $wpdb->prepare( "SELECT tt.term_taxonomy_id FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id WHERE tt.taxonomy = %s AND t.term_id = %d", $taxonomy, $term_id ) );
2011
2012         if ( !empty($tt_id) )
2013                 return array('term_id' => $term_id, 'term_taxonomy_id' => $tt_id);
2014
2015         $wpdb->insert( $wpdb->term_taxonomy, compact( 'term_id', 'taxonomy', 'description', 'parent') + array( 'count' => 0 ) );
2016         $tt_id = (int) $wpdb->insert_id;
2017
2018         do_action("create_term", $term_id, $tt_id, $taxonomy);
2019         do_action("create_$taxonomy", $term_id, $tt_id);
2020
2021         $term_id = apply_filters('term_id_filter', $term_id, $tt_id);
2022
2023         clean_term_cache($term_id, $taxonomy);
2024
2025         do_action("created_term", $term_id, $tt_id, $taxonomy);
2026         do_action("created_$taxonomy", $term_id, $tt_id);
2027
2028         return array('term_id' => $term_id, 'term_taxonomy_id' => $tt_id);
2029 }
2030
2031 /**
2032  * Create Term and Taxonomy Relationships.
2033  *
2034  * Relates an object (post, link etc) to a term and taxonomy type. Creates the
2035  * term and taxonomy relationship if it doesn't already exist. Creates a term if
2036  * it doesn't exist (using the slug).
2037  *
2038  * A relationship means that the term is grouped in or belongs to the taxonomy.
2039  * A term has no meaning until it is given context by defining which taxonomy it
2040  * exists under.
2041  *
2042  * @package WordPress
2043  * @subpackage Taxonomy
2044  * @since 2.3.0
2045  * @uses $wpdb
2046  *
2047  * @param int $object_id The object to relate to.
2048  * @param array|int|string $terms The slug or id of the term, will replace all existing
2049  * related terms in this taxonomy.
2050  * @param array|string $taxonomy The context in which to relate the term to the object.
2051  * @param bool $append If false will delete difference of terms.
2052  * @return array|WP_Error Affected Term IDs
2053  */
2054 function wp_set_object_terms($object_id, $terms, $taxonomy, $append = false) {
2055         global $wpdb;
2056
2057         $object_id = (int) $object_id;
2058
2059         if ( ! taxonomy_exists($taxonomy) )
2060                 return new WP_Error('invalid_taxonomy', __('Invalid Taxonomy'));
2061
2062         if ( !is_array($terms) )
2063                 $terms = array($terms);
2064
2065         if ( ! $append )
2066                 $old_tt_ids =  wp_get_object_terms($object_id, $taxonomy, array('fields' => 'tt_ids', 'orderby' => 'none'));
2067         else
2068                 $old_tt_ids = array();
2069
2070         $tt_ids = array();
2071         $term_ids = array();
2072
2073         foreach ( (array) $terms as $term) {
2074                 if ( !strlen(trim($term)) )
2075                         continue;
2076
2077                 if ( !$term_info = term_exists($term, $taxonomy) ) {
2078                         // Skip if a non-existent term ID is passed.
2079                         if ( is_int($term) )
2080                                 continue;
2081                         $term_info = wp_insert_term($term, $taxonomy);
2082                 }
2083                 if ( is_wp_error($term_info) )
2084                         return $term_info;
2085                 $term_ids[] = $term_info['term_id'];
2086                 $tt_id = $term_info['term_taxonomy_id'];
2087                 $tt_ids[] = $tt_id;
2088
2089                 if ( $wpdb->get_var( $wpdb->prepare( "SELECT term_taxonomy_id FROM $wpdb->term_relationships WHERE object_id = %d AND term_taxonomy_id = %d", $object_id, $tt_id ) ) )
2090                         continue;
2091                 do_action( 'add_term_relationship', $object_id, $tt_id );
2092                 $wpdb->insert( $wpdb->term_relationships, array( 'object_id' => $object_id, 'term_taxonomy_id' => $tt_id ) );
2093                 do_action( 'added_term_relationship', $object_id, $tt_id );
2094         }
2095
2096         wp_update_term_count($tt_ids, $taxonomy);
2097
2098         if ( ! $append ) {
2099                 $delete_terms = array_diff($old_tt_ids, $tt_ids);
2100                 if ( $delete_terms ) {
2101                         $in_delete_terms = "'" . implode("', '", $delete_terms) . "'";
2102                         do_action( 'delete_term_relationships', $object_id, $delete_terms );
2103                         $wpdb->query( $wpdb->prepare("DELETE FROM $wpdb->term_relationships WHERE object_id = %d AND term_taxonomy_id IN ($in_delete_terms)", $object_id) );
2104                         do_action( 'deleted_term_relationships', $object_id, $delete_terms );
2105                         wp_update_term_count($delete_terms, $taxonomy);
2106                 }
2107         }
2108
2109         $t = get_taxonomy($taxonomy);
2110         if ( ! $append && isset($t->sort) && $t->sort ) {
2111                 $values = array();
2112                 $term_order = 0;
2113                 $final_tt_ids = wp_get_object_terms($object_id, $taxonomy, array('fields' => 'tt_ids'));
2114                 foreach ( $tt_ids as $tt_id )
2115                         if ( in_array($tt_id, $final_tt_ids) )
2116                                 $values[] = $wpdb->prepare( "(%d, %d, %d)", $object_id, $tt_id, ++$term_order);
2117                 if ( $values )
2118                         $wpdb->query("INSERT INTO $wpdb->term_relationships (object_id, term_taxonomy_id, term_order) VALUES " . join(',', $values) . " ON DUPLICATE KEY UPDATE term_order = VALUES(term_order)");
2119         }
2120
2121         do_action('set_object_terms', $object_id, $terms, $tt_ids, $taxonomy, $append, $old_tt_ids);
2122         return $tt_ids;
2123 }
2124
2125 /**
2126  * Will make slug unique, if it isn't already.
2127  *
2128  * The $slug has to be unique global to every taxonomy, meaning that one
2129  * taxonomy term can't have a matching slug with another taxonomy term. Each
2130  * slug has to be globally unique for every taxonomy.
2131  *
2132  * The way this works is that if the taxonomy that the term belongs to is
2133  * hierarchical and has a parent, it will append that parent to the $slug.
2134  *
2135  * If that still doesn't return an unique slug, then it try to append a number
2136  * until it finds a number that is truely unique.
2137  *
2138  * The only purpose for $term is for appending a parent, if one exists.
2139  *
2140  * @package WordPress
2141  * @subpackage Taxonomy
2142  * @since 2.3.0
2143  * @uses $wpdb
2144  *
2145  * @param string $slug The string that will be tried for a unique slug
2146  * @param object $term The term object that the $slug will belong too
2147  * @return string Will return a true unique slug.
2148  */
2149 function wp_unique_term_slug($slug, $term) {
2150         global $wpdb;
2151
2152         if ( ! term_exists( $slug ) )
2153                 return $slug;
2154
2155         // If the taxonomy supports hierarchy and the term has a parent, make the slug unique
2156         // by incorporating parent slugs.
2157         if ( is_taxonomy_hierarchical($term->taxonomy) && !empty($term->parent) ) {
2158                 $the_parent = $term->parent;
2159                 while ( ! empty($the_parent) ) {
2160                         $parent_term = get_term($the_parent, $term->taxonomy);
2161                         if ( is_wp_error($parent_term) || empty($parent_term) )
2162                                 break;
2163                         $slug .= '-' . $parent_term->slug;
2164                         if ( ! term_exists( $slug ) )
2165                                 return $slug;
2166
2167                         if ( empty($parent_term->parent) )
2168                                 break;
2169                         $the_parent = $parent_term->parent;
2170                 }
2171         }
2172
2173         // If we didn't get a unique slug, try appending a number to make it unique.
2174         if ( !empty($args['term_id']) )
2175                 $query = $wpdb->prepare( "SELECT slug FROM $wpdb->terms WHERE slug = %s AND term_id != %d", $slug, $args['term_id'] );
2176         else
2177                 $query = $wpdb->prepare( "SELECT slug FROM $wpdb->terms WHERE slug = %s", $slug );
2178
2179         if ( $wpdb->get_var( $query ) ) {
2180                 $num = 2;
2181                 do {
2182                         $alt_slug = $slug . "-$num";
2183                         $num++;
2184                         $slug_check = $wpdb->get_var( $wpdb->prepare( "SELECT slug FROM $wpdb->terms WHERE slug = %s", $alt_slug ) );
2185                 } while ( $slug_check );
2186                 $slug = $alt_slug;
2187         }
2188
2189         return $slug;
2190 }
2191
2192 /**
2193  * Update term based on arguments provided.
2194  *
2195  * The $args will indiscriminately override all values with the same field name.
2196  * Care must be taken to not override important information need to update or
2197  * update will fail (or perhaps create a new term, neither would be acceptable).
2198  *
2199  * Defaults will set 'alias_of', 'description', 'parent', and 'slug' if not
2200  * defined in $args already.
2201  *
2202  * 'alias_of' will create a term group, if it doesn't already exist, and update
2203  * it for the $term.
2204  *
2205  * If the 'slug' argument in $args is missing, then the 'name' in $args will be
2206  * used. It should also be noted that if you set 'slug' and it isn't unique then
2207  * a WP_Error will be passed back. If you don't pass any slug, then a unique one
2208  * will be created for you.
2209  *
2210  * For what can be overrode in $args, check the term scheme can contain and stay
2211  * away from the term keys.
2212  *
2213  * @package WordPress
2214  * @subpackage Taxonomy
2215  * @since 2.3.0
2216  *
2217  * @uses $wpdb
2218  * @uses do_action() Will call both 'edit_term' and 'edit_$taxonomy' twice.
2219  * @uses apply_filters() Will call the 'term_id_filter' filter and pass the term
2220  *      id and taxonomy id.
2221  *
2222  * @param int $term_id The ID of the term
2223  * @param string $taxonomy The context in which to relate the term to the object.
2224  * @param array|string $args Overwrite term field values
2225  * @return array|WP_Error Returns Term ID and Taxonomy Term ID
2226  */
2227 function wp_update_term( $term_id, $taxonomy, $args = array() ) {
2228         global $wpdb;
2229
2230         if ( ! taxonomy_exists($taxonomy) )
2231                 return new WP_Error('invalid_taxonomy', __('Invalid taxonomy'));
2232
2233         $term_id = (int) $term_id;
2234
2235         // First, get all of the original args
2236         $term = get_term ($term_id, $taxonomy, ARRAY_A);
2237
2238         if ( is_wp_error( $term ) )
2239                 return $term;
2240
2241         // Escape data pulled from DB.
2242         $term = add_magic_quotes($term);
2243
2244         // Merge old and new args with new args overwriting old ones.
2245         $args = array_merge($term, $args);
2246
2247         $defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
2248         $args = wp_parse_args($args, $defaults);
2249         $args = sanitize_term($args, $taxonomy, 'db');
2250         extract($args, EXTR_SKIP);
2251
2252         // expected_slashed ($name)
2253         $name = stripslashes($name);
2254         $description = stripslashes($description);
2255
2256         if ( '' == trim($name) )
2257                 return new WP_Error('empty_term_name', __('A name is required for this term'));
2258
2259         $empty_slug = false;
2260         if ( empty($slug) ) {
2261                 $empty_slug = true;
2262                 $slug = sanitize_title($name);
2263         }
2264
2265         if ( $alias_of ) {
2266                 $alias = $wpdb->get_row( $wpdb->prepare( "SELECT term_id, term_group FROM $wpdb->terms WHERE slug = %s", $alias_of) );
2267                 if ( $alias->term_group ) {
2268                         // The alias we want is already in a group, so let's use that one.
2269                         $term_group = $alias->term_group;
2270                 } else {
2271                         // The alias isn't in a group, so let's create a new one and firstly add the alias term to it.
2272                         $term_group = $wpdb->get_var("SELECT MAX(term_group) FROM $wpdb->terms") + 1;
2273                         do_action( 'edit_terms', $alias->term_id );
2274                         $wpdb->update( $wpdb->terms, compact('term_group'), array( 'term_id' => $alias->term_id ) );
2275                         do_action( 'edited_terms', $alias->term_id );
2276                 }
2277         }
2278
2279         // Check $parent to see if it will cause a hierarchy loop
2280         $parent = apply_filters( 'wp_update_term_parent', $parent, $term_id, $taxonomy, compact( array_keys( $args ) ), $args );
2281
2282         // Check for duplicate slug
2283         $id = $wpdb->get_var( $wpdb->prepare( "SELECT term_id FROM $wpdb->terms WHERE slug = %s", $slug ) );
2284         if ( $id && ($id != $term_id) ) {
2285                 // If an empty slug was passed or the parent changed, reset the slug to something unique.
2286                 // Otherwise, bail.
2287                 if ( $empty_slug || ( $parent != $term['parent']) )
2288                         $slug = wp_unique_term_slug($slug, (object) $args);
2289                 else
2290                         return new WP_Error('duplicate_term_slug', sprintf(__('The slug &#8220;%s&#8221; is already in use by another term'), $slug));
2291         }
2292         do_action( 'edit_terms', $term_id );
2293         $wpdb->update($wpdb->terms, compact( 'name', 'slug', 'term_group' ), compact( 'term_id' ) );
2294         if ( empty($slug) ) {
2295                 $slug = sanitize_title($name, $term_id);
2296                 $wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
2297         }
2298         do_action( 'edited_terms', $term_id );
2299
2300         $tt_id = $wpdb->get_var( $wpdb->prepare( "SELECT tt.term_taxonomy_id FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id WHERE tt.taxonomy = %s AND t.term_id = %d", $taxonomy, $term_id) );
2301         do_action( 'edit_term_taxonomy', $tt_id, $taxonomy );
2302         $wpdb->update( $wpdb->term_taxonomy, compact( 'term_id', 'taxonomy', 'description', 'parent' ), array( 'term_taxonomy_id' => $tt_id ) );
2303         do_action( 'edited_term_taxonomy', $tt_id, $taxonomy );
2304
2305         do_action("edit_term", $term_id, $tt_id, $taxonomy);
2306         do_action("edit_$taxonomy", $term_id, $tt_id);
2307
2308         $term_id = apply_filters('term_id_filter', $term_id, $tt_id);
2309
2310         clean_term_cache($term_id, $taxonomy);
2311
2312         do_action("edited_term", $term_id, $tt_id, $taxonomy);
2313         do_action("edited_$taxonomy", $term_id, $tt_id);
2314
2315         return array('term_id' => $term_id, 'term_taxonomy_id' => $tt_id);
2316 }
2317
2318 /**
2319  * Enable or disable term counting.
2320  *
2321  * @since 2.5.0
2322  *
2323  * @param bool $defer Optional. Enable if true, disable if false.
2324  * @return bool Whether term counting is enabled or disabled.
2325  */
2326 function wp_defer_term_counting($defer=null) {
2327         static $_defer = false;
2328
2329         if ( is_bool($defer) ) {
2330                 $_defer = $defer;
2331                 // flush any deferred counts
2332                 if ( !$defer )
2333                         wp_update_term_count( null, null, true );
2334         }
2335
2336         return $_defer;
2337 }
2338
2339 /**
2340  * Updates the amount of terms in taxonomy.
2341  *
2342  * If there is a taxonomy callback applyed, then it will be called for updating
2343  * the count.
2344  *
2345  * The default action is to count what the amount of terms have the relationship
2346  * of term ID. Once that is done, then update the database.
2347  *
2348  * @package WordPress
2349  * @subpackage Taxonomy
2350  * @since 2.3.0
2351  * @uses $wpdb
2352  *
2353  * @param int|array $terms The term_taxonomy_id of the terms
2354  * @param string $taxonomy The context of the term.
2355  * @return bool If no terms will return false, and if successful will return true.
2356  */
2357 function wp_update_term_count( $terms, $taxonomy, $do_deferred=false ) {
2358         static $_deferred = array();
2359
2360         if ( $do_deferred ) {
2361                 foreach ( (array) array_keys($_deferred) as $tax ) {
2362                         wp_update_term_count_now( $_deferred[$tax], $tax );
2363                         unset( $_deferred[$tax] );
2364                 }
2365         }
2366
2367         if ( empty($terms) )
2368                 return false;
2369
2370         if ( !is_array($terms) )
2371                 $terms = array($terms);
2372
2373         if ( wp_defer_term_counting() ) {
2374                 if ( !isset($_deferred[$taxonomy]) )
2375                         $_deferred[$taxonomy] = array();
2376                 $_deferred[$taxonomy] = array_unique( array_merge($_deferred[$taxonomy], $terms) );
2377                 return true;
2378         }
2379
2380         return wp_update_term_count_now( $terms, $taxonomy );
2381 }
2382
2383 /**
2384  * Perform term count update immediately.
2385  *
2386  * @since 2.5.0
2387  *
2388  * @param array $terms The term_taxonomy_id of terms to update.
2389  * @param string $taxonomy The context of the term.
2390  * @return bool Always true when complete.
2391  */
2392 function wp_update_term_count_now( $terms, $taxonomy ) {
2393         global $wpdb;
2394
2395         $terms = array_map('intval', $terms);
2396
2397         $taxonomy = get_taxonomy($taxonomy);
2398         if ( !empty($taxonomy->update_count_callback) ) {
2399                 call_user_func($taxonomy->update_count_callback, $terms, $taxonomy);
2400         } else {
2401                 // Default count updater
2402                 foreach ( (array) $terms as $term) {
2403                         $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships WHERE term_taxonomy_id = %d", $term) );
2404                         do_action( 'edit_term_taxonomy', $term, $taxonomy );
2405                         $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) );
2406                         do_action( 'edited_term_taxonomy', $term, $taxonomy );
2407                 }
2408
2409         }
2410
2411         clean_term_cache($terms, '', false);
2412
2413         return true;
2414 }
2415
2416 //
2417 // Cache
2418 //
2419
2420
2421 /**
2422  * Removes the taxonomy relationship to terms from the cache.
2423  *
2424  * Will remove the entire taxonomy relationship containing term $object_id. The
2425  * term IDs have to exist within the taxonomy $object_type for the deletion to
2426  * take place.
2427  *
2428  * @package WordPress
2429  * @subpackage Taxonomy
2430  * @since 2.3.0
2431  *
2432  * @see get_object_taxonomies() for more on $object_type
2433  * @uses do_action() Will call action hook named, 'clean_object_term_cache' after completion.
2434  *      Passes, function params in same order.
2435  *
2436  * @param int|array $object_ids Single or list of term object ID(s)
2437  * @param array|string $object_type The taxonomy object type
2438  */
2439 function clean_object_term_cache($object_ids, $object_type) {
2440         if ( !is_array($object_ids) )
2441                 $object_ids = array($object_ids);
2442
2443         foreach ( $object_ids as $id )
2444                 foreach ( get_object_taxonomies($object_type) as $taxonomy )
2445                         wp_cache_delete($id, "{$taxonomy}_relationships");
2446
2447         do_action('clean_object_term_cache', $object_ids, $object_type);
2448 }
2449
2450
2451 /**
2452  * Will remove all of the term ids from the cache.
2453  *
2454  * @package WordPress
2455  * @subpackage Taxonomy
2456  * @since 2.3.0
2457  * @uses $wpdb
2458  *
2459  * @param int|array $ids Single or list of Term IDs
2460  * @param string $taxonomy Can be empty and will assume tt_ids, else will use for context.
2461  * @param bool $clean_taxonomy Whether to clean taxonomy wide caches (true), or just individual term object caches (false). Default is true.
2462  */
2463 function clean_term_cache($ids, $taxonomy = '', $clean_taxonomy = true) {
2464         global $wpdb;
2465         static $cleaned = array();
2466
2467         if ( !is_array($ids) )
2468                 $ids = array($ids);
2469
2470         $taxonomies = array();
2471         // If no taxonomy, assume tt_ids.
2472         if ( empty($taxonomy) ) {
2473                 $tt_ids = array_map('intval', $ids);
2474                 $tt_ids = implode(', ', $tt_ids);
2475                 $terms = $wpdb->get_results("SELECT term_id, taxonomy FROM $wpdb->term_taxonomy WHERE term_taxonomy_id IN ($tt_ids)");
2476                 $ids = array();
2477                 foreach ( (array) $terms as $term ) {
2478                         $taxonomies[] = $term->taxonomy;
2479                         $ids[] = $term->term_id;
2480                         wp_cache_delete($term->term_id, $term->taxonomy);
2481                 }
2482                 $taxonomies = array_unique($taxonomies);
2483         } else {
2484                 $taxonomies = array($taxonomy);
2485                 foreach ( $taxonomies as $taxonomy ) {
2486                         foreach ( $ids as $id ) {
2487                                 wp_cache_delete($id, $taxonomy);
2488                         }
2489                 }
2490         }
2491
2492         foreach ( $taxonomies as $taxonomy ) {
2493                 if ( isset($cleaned[$taxonomy]) )
2494                         continue;
2495                 $cleaned[$taxonomy] = true;
2496
2497                 if ( $clean_taxonomy ) {
2498                         wp_cache_delete('all_ids', $taxonomy);
2499                         wp_cache_delete('get', $taxonomy);
2500                         delete_option("{$taxonomy}_children");
2501                         // Regenerate {$taxonomy}_children
2502                         _get_term_hierarchy($taxonomy);
2503                 }
2504
2505                 do_action('clean_term_cache', $ids, $taxonomy);
2506         }
2507
2508         wp_cache_set('last_changed', time(), 'terms');
2509 }
2510
2511
2512 /**
2513  * Retrieves the taxonomy relationship to the term object id.
2514  *
2515  * @package WordPress
2516  * @subpackage Taxonomy
2517  * @since 2.3.0
2518  *
2519  * @uses wp_cache_get() Retrieves taxonomy relationship from cache
2520  *
2521  * @param int|array $id Term object ID
2522  * @param string $taxonomy Taxonomy Name
2523  * @return bool|array Empty array if $terms found, but not $taxonomy. False if nothing is in cache for $taxonomy and $id.
2524  */
2525 function &get_object_term_cache($id, $taxonomy) {
2526         $cache = wp_cache_get($id, "{$taxonomy}_relationships");
2527         return $cache;
2528 }
2529
2530
2531 /**
2532  * Updates the cache for Term ID(s).
2533  *
2534  * Will only update the cache for terms not already cached.
2535  *
2536  * The $object_ids expects that the ids be separated by commas, if it is a
2537  * string.
2538  *
2539  * It should be noted that update_object_term_cache() is very time extensive. It
2540  * is advised that the function is not called very often or at least not for a
2541  * lot of terms that exist in a lot of taxonomies. The amount of time increases
2542  * for each term and it also increases for each taxonomy the term belongs to.
2543  *
2544  * @package WordPress
2545  * @subpackage Taxonomy
2546  * @since 2.3.0
2547  * @uses wp_get_object_terms() Used to get terms from the database to update
2548  *
2549  * @param string|array $object_ids Single or list of term object ID(s)
2550  * @param array|string $object_type The taxonomy object type
2551  * @return null|bool Null value is given with empty $object_ids. False if
2552  */
2553 function update_object_term_cache($object_ids, $object_type) {
2554         if ( empty($object_ids) )
2555                 return;
2556
2557         if ( !is_array($object_ids) )
2558                 $object_ids = explode(',', $object_ids);
2559
2560         $object_ids = array_map('intval', $object_ids);
2561
2562         $taxonomies = get_object_taxonomies($object_type);
2563
2564         $ids = array();
2565         foreach ( (array) $object_ids as $id ) {
2566                 foreach ( $taxonomies as $taxonomy ) {
2567                         if ( false === wp_cache_get($id, "{$taxonomy}_relationships") ) {
2568                                 $ids[] = $id;
2569                                 break;
2570                         }
2571                 }
2572         }
2573
2574         if ( empty( $ids ) )
2575                 return false;
2576
2577         $terms = wp_get_object_terms($ids, $taxonomies, array('fields' => 'all_with_object_id'));
2578
2579         $object_terms = array();
2580         foreach ( (array) $terms as $term )
2581                 $object_terms[$term->object_id][$term->taxonomy][$term->term_id] = $term;
2582
2583         foreach ( $ids as $id ) {
2584                 foreach ( $taxonomies  as $taxonomy ) {
2585                         if ( ! isset($object_terms[$id][$taxonomy]) ) {
2586                                 if ( !isset($object_terms[$id]) )
2587                                         $object_terms[$id] = array();
2588                                 $object_terms[$id][$taxonomy] = array();
2589                         }
2590                 }
2591         }
2592
2593         foreach ( $object_terms as $id => $value ) {
2594                 foreach ( $value as $taxonomy => $terms ) {
2595                         wp_cache_set($id, $terms, "{$taxonomy}_relationships");
2596                 }
2597         }
2598 }
2599
2600
2601 /**
2602  * Updates Terms to Taxonomy in cache.
2603  *
2604  * @package WordPress
2605  * @subpackage Taxonomy
2606  * @since 2.3.0
2607  *
2608  * @param array $terms List of Term objects to change
2609  * @param string $taxonomy Optional. Update Term to this taxonomy in cache
2610  */
2611 function update_term_cache($terms, $taxonomy = '') {
2612         foreach ( (array) $terms as $term ) {
2613                 $term_taxonomy = $taxonomy;
2614                 if ( empty($term_taxonomy) )
2615                         $term_taxonomy = $term->taxonomy;
2616
2617                 wp_cache_add($term->term_id, $term, $term_taxonomy);
2618         }
2619 }
2620
2621 //
2622 // Private
2623 //
2624
2625
2626 /**
2627  * Retrieves children of taxonomy as Term IDs.
2628  *
2629  * @package WordPress
2630  * @subpackage Taxonomy
2631  * @access private
2632  * @since 2.3.0
2633  *
2634  * @uses update_option() Stores all of the children in "$taxonomy_children"
2635  *       option. That is the name of the taxonomy, immediately followed by '_children'.
2636  *
2637  * @param string $taxonomy Taxonomy Name
2638  * @return array Empty if $taxonomy isn't hierarchical or returns children as Term IDs.
2639  */
2640 function _get_term_hierarchy($taxonomy) {
2641         if ( !is_taxonomy_hierarchical($taxonomy) )
2642                 return array();
2643         $children = get_option("{$taxonomy}_children");
2644
2645         if ( is_array($children) )
2646                 return $children;
2647         $children = array();
2648         $terms = get_terms($taxonomy, array('get' => 'all', 'orderby' => 'id', 'fields' => 'id=>parent'));
2649         foreach ( $terms as $term_id => $parent ) {
2650                 if ( $parent > 0 )
2651                         $children[$parent][] = $term_id;
2652         }
2653         update_option("{$taxonomy}_children", $children);
2654
2655         return $children;
2656 }
2657
2658
2659 /**
2660  * Get the subset of $terms that are descendants of $term_id.
2661  *
2662  * If $terms is an array of objects, then _get_term_children returns an array of objects.
2663  * If $terms is an array of IDs, then _get_term_children returns an array of IDs.
2664  *
2665  * @package WordPress
2666  * @subpackage Taxonomy
2667  * @access private
2668  * @since 2.3.0
2669  *
2670  * @param int $term_id The ancestor term: all returned terms should be descendants of $term_id.
2671  * @param array $terms The set of terms---either an array of term objects or term IDs---from which those that are descendants of $term_id will be chosen.
2672  * @param string $taxonomy The taxonomy which determines the hierarchy of the terms.
2673  * @return array The subset of $terms that are descendants of $term_id.
2674  */
2675 function &_get_term_children($term_id, $terms, $taxonomy) {
2676         $empty_array = array();
2677         if ( empty($terms) )
2678                 return $empty_array;
2679
2680         $term_list = array();
2681         $has_children = _get_term_hierarchy($taxonomy);
2682
2683         if  ( ( 0 != $term_id ) && ! isset($has_children[$term_id]) )
2684                 return $empty_array;
2685
2686         foreach ( (array) $terms as $term ) {
2687                 $use_id = false;
2688                 if ( !is_object($term) ) {
2689                         $term = get_term($term, $taxonomy);
2690                         if ( is_wp_error( $term ) )
2691                                 return $term;
2692                         $use_id = true;
2693                 }
2694
2695                 if ( $term->term_id == $term_id )
2696                         continue;
2697
2698                 if ( $term->parent == $term_id ) {
2699                         if ( $use_id )
2700                                 $term_list[] = $term->term_id;
2701                         else
2702                                 $term_list[] = $term;
2703
2704                         if ( !isset($has_children[$term->term_id]) )
2705                                 continue;
2706
2707                         if ( $children = _get_term_children($term->term_id, $terms, $taxonomy) )
2708                                 $term_list = array_merge($term_list, $children);
2709                 }
2710         }
2711
2712         return $term_list;
2713 }
2714
2715
2716 /**
2717  * Add count of children to parent count.
2718  *
2719  * Recalculates term counts by including items from child terms. Assumes all
2720  * relevant children are already in the $terms argument.
2721  *
2722  * @package WordPress
2723  * @subpackage Taxonomy
2724  * @access private
2725  * @since 2.3.0
2726  * @uses $wpdb
2727  *
2728  * @param array $terms List of Term IDs
2729  * @param string $taxonomy Term Context
2730  * @return null Will break from function if conditions are not met.
2731  */
2732 function _pad_term_counts(&$terms, $taxonomy) {
2733         global $wpdb;
2734
2735         // This function only works for hierarchical taxonomies like post categories.
2736         if ( !is_taxonomy_hierarchical( $taxonomy ) )
2737                 return;
2738
2739         $term_hier = _get_term_hierarchy($taxonomy);
2740
2741         if ( empty($term_hier) )
2742                 return;
2743
2744         $term_items = array();
2745
2746         foreach ( (array) $terms as $key => $term ) {
2747                 $terms_by_id[$term->term_id] = & $terms[$key];
2748                 $term_ids[$term->term_taxonomy_id] = $term->term_id;
2749         }
2750
2751         // Get the object and term ids and stick them in a lookup table
2752         $tax_obj = get_taxonomy($taxonomy);
2753         $object_types = esc_sql($tax_obj->object_type);
2754         $results = $wpdb->get_results("SELECT object_id, term_taxonomy_id FROM $wpdb->term_relationships INNER JOIN $wpdb->posts ON object_id = ID WHERE term_taxonomy_id IN (" . implode(',', array_keys($term_ids)) . ") AND post_type IN ('" . implode("', '", $object_types) . "') AND post_status = 'publish'");
2755         foreach ( $results as $row ) {
2756                 $id = $term_ids[$row->term_taxonomy_id];
2757                 $term_items[$id][$row->object_id] = isset($term_items[$id][$row->object_id]) ? ++$term_items[$id][$row->object_id] : 1;
2758         }
2759
2760         // Touch every ancestor's lookup row for each post in each term
2761         foreach ( $term_ids as $term_id ) {
2762                 $child = $term_id;
2763                 while ( $parent = $terms_by_id[$child]->parent ) {
2764                         if ( !empty($term_items[$term_id]) )
2765                                 foreach ( $term_items[$term_id] as $item_id => $touches ) {
2766                                         $term_items[$parent][$item_id] = isset($term_items[$parent][$item_id]) ? ++$term_items[$parent][$item_id]: 1;
2767                                 }
2768                         $child = $parent;
2769                 }
2770         }
2771
2772         // Transfer the touched cells
2773         foreach ( (array) $term_items as $id => $items )
2774                 if ( isset($terms_by_id[$id]) )
2775                         $terms_by_id[$id]->count = count($items);
2776 }
2777
2778 //
2779 // Default callbacks
2780 //
2781
2782 /**
2783  * Will update term count based on object types of the current taxonomy.
2784  *
2785  * Private function for the default callback for post_tag and category
2786  * taxonomies.
2787  *
2788  * @package WordPress
2789  * @subpackage Taxonomy
2790  * @access private
2791  * @since 2.3.0
2792  * @uses $wpdb
2793  *
2794  * @param array $terms List of Term taxonomy IDs
2795  * @param object $taxonomy Current taxonomy object of terms
2796  */
2797 function _update_post_term_count( $terms, $taxonomy ) {
2798         global $wpdb;
2799
2800         $object_types = is_array($taxonomy->object_type) ? $taxonomy->object_type : array($taxonomy->object_type);
2801         $object_types = esc_sql($object_types);
2802
2803         foreach ( (array) $terms as $term ) {
2804                 $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships, $wpdb->posts WHERE $wpdb->posts.ID = $wpdb->term_relationships.object_id AND post_status = 'publish' AND post_type IN ('" . implode("', '", $object_types) . "') AND term_taxonomy_id = %d", $term ) );
2805                 do_action( 'edit_term_taxonomy', $term, $taxonomy );
2806                 $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) );
2807                 do_action( 'edited_term_taxonomy', $term, $taxonomy );
2808         }
2809 }
2810
2811
2812 /**
2813  * Generates a permalink for a taxonomy term archive.
2814  *
2815  * @since 2.5.0
2816  *
2817  * @uses apply_filters() Calls 'term_link' with term link and term object, and taxonomy parameters.
2818  * @uses apply_filters() For the post_tag Taxonomy, Calls 'tag_link' with tag link and tag ID as parameters.
2819  * @uses apply_filters() For the category Taxonomy, Calls 'category_link' filter on category link and category ID.
2820  *
2821  * @param object|int|string $term
2822  * @param string $taxonomy (optional if $term is object)
2823  * @return string|WP_Error HTML link to taxonomy term archive on success, WP_Error if term does not exist.
2824  */
2825 function get_term_link( $term, $taxonomy = '') {
2826         global $wp_rewrite;
2827
2828         if ( !is_object($term) ) {
2829                 if ( is_int($term) ) {
2830                         $term = &get_term($term, $taxonomy);
2831                 } else {
2832                         $term = &get_term_by('slug', $term, $taxonomy);
2833                 }
2834         }
2835
2836         if ( !is_object($term) )
2837                 $term = new WP_Error('invalid_term', __('Empty Term'));
2838
2839         if ( is_wp_error( $term ) )
2840                 return $term;
2841
2842         $taxonomy = $term->taxonomy;
2843
2844         $termlink = $wp_rewrite->get_extra_permastruct($taxonomy);
2845
2846         $slug = $term->slug;
2847         $t = get_taxonomy($taxonomy);
2848
2849         if ( empty($termlink) ) {
2850                 if ( 'category' == $taxonomy )
2851                         $termlink = '?cat=' . $term->term_id;
2852                 elseif ( $t->query_var )
2853                         $termlink = "?$t->query_var=$slug";
2854                 else
2855                         $termlink = "?taxonomy=$taxonomy&term=$slug";
2856                 $termlink = home_url($termlink);
2857         } else {
2858                 if ( $t->rewrite['hierarchical'] ) {
2859                         $hierarchical_slugs = array();
2860                         $ancestors = get_ancestors($term->term_id, $taxonomy);
2861                         foreach ( (array)$ancestors as $ancestor ) {
2862                                 $ancestor_term = get_term($ancestor, $taxonomy);
2863                                 $hierarchical_slugs[] = $ancestor_term->slug;
2864                         }
2865                         $hierarchical_slugs = array_reverse($hierarchical_slugs);
2866                         $hierarchical_slugs[] = $slug;
2867                         $termlink = str_replace("%$taxonomy%", implode('/', $hierarchical_slugs), $termlink);
2868                 } else {
2869                         $termlink = str_replace("%$taxonomy%", $slug, $termlink);
2870                 }
2871                 $termlink = home_url( user_trailingslashit($termlink, 'category') );
2872         }
2873         // Back Compat filters.
2874         if ( 'post_tag' == $taxonomy )
2875                 $termlink = apply_filters( 'tag_link', $termlink, $term->term_id );
2876         elseif ( 'category' == $taxonomy )
2877                 $termlink = apply_filters( 'category_link', $termlink, $term->term_id );
2878
2879         return apply_filters('term_link', $termlink, $term, $taxonomy);
2880 }
2881
2882 /**
2883  * Display the taxonomies of a post with available options.
2884  *
2885  * This function can be used within the loop to display the taxonomies for a
2886  * post without specifying the Post ID. You can also use it outside the Loop to
2887  * display the taxonomies for a specific post.
2888  *
2889  * The available defaults are:
2890  * 'post' : default is 0. The post ID to get taxonomies of.
2891  * 'before' : default is empty string. Display before taxonomies list.
2892  * 'sep' : default is empty string. Separate every taxonomy with value in this.
2893  * 'after' : default is empty string. Display this after the taxonomies list.
2894  * 'template' : The template to use for displaying the taxonomy terms.
2895  *
2896  * @since 2.5.0
2897  * @uses get_the_taxonomies()
2898  *
2899  * @param array $args Override the defaults.
2900  */
2901 function the_taxonomies($args = array()) {
2902         $defaults = array(
2903                 'post' => 0,
2904                 'before' => '',
2905                 'sep' => ' ',
2906                 'after' => '',
2907                 'template' => '%s: %l.'
2908         );
2909
2910         $r = wp_parse_args( $args, $defaults );
2911         extract( $r, EXTR_SKIP );
2912
2913         echo $before . join($sep, get_the_taxonomies($post, $r)) . $after;
2914 }
2915
2916 /**
2917  * Retrieve all taxonomies associated with a post.
2918  *
2919  * This function can be used within the loop. It will also return an array of
2920  * the taxonomies with links to the taxonomy and name.
2921  *
2922  * @since 2.5.0
2923  *
2924  * @param int $post Optional. Post ID or will use Global Post ID (in loop).
2925  * @param array $args Override the defaults.
2926  * @return array
2927  */
2928 function get_the_taxonomies($post = 0, $args = array() ) {
2929         if ( is_int($post) )
2930                 $post =& get_post($post);
2931         elseif ( !is_object($post) )
2932                 $post =& $GLOBALS['post'];
2933
2934         $args = wp_parse_args( $args, array(
2935                 'template' => '%s: %l.',
2936         ) );
2937         extract( $args, EXTR_SKIP );
2938
2939         $taxonomies = array();
2940
2941         if ( !$post )
2942                 return $taxonomies;
2943
2944         foreach ( get_object_taxonomies($post) as $taxonomy ) {
2945                 $t = (array) get_taxonomy($taxonomy);
2946                 if ( empty($t['label']) )
2947                         $t['label'] = $taxonomy;
2948                 if ( empty($t['args']) )
2949                         $t['args'] = array();
2950                 if ( empty($t['template']) )
2951                         $t['template'] = $template;
2952
2953                 $terms = get_object_term_cache($post->ID, $taxonomy);
2954                 if ( empty($terms) )
2955                         $terms = wp_get_object_terms($post->ID, $taxonomy, $t['args']);
2956
2957                 $links = array();
2958
2959                 foreach ( $terms as $term )
2960                         $links[] = "<a href='" . esc_attr( get_term_link($term) ) . "'>$term->name</a>";
2961
2962                 if ( $links )
2963                         $taxonomies[$taxonomy] = wp_sprintf($t['template'], $t['label'], $links, $terms);
2964         }
2965         return $taxonomies;
2966 }
2967
2968 /**
2969  * Retrieve all taxonomies of a post with just the names.
2970  *
2971  * @since 2.5.0
2972  * @uses get_object_taxonomies()
2973  *
2974  * @param int $post Optional. Post ID
2975  * @return array
2976  */
2977 function get_post_taxonomies($post = 0) {
2978         $post =& get_post($post);
2979
2980         return get_object_taxonomies($post);
2981 }
2982
2983 /**
2984  * Determine if the given object is associated with any of the given terms.
2985  *
2986  * The given terms are checked against the object's terms' term_ids, names and slugs.
2987  * Terms given as integers will only be checked against the object's terms' term_ids.
2988  * If no terms are given, determines if object is associated with any terms in the given taxonomy.
2989  *
2990  * @since 2.7.0
2991  * @uses get_object_term_cache()
2992  * @uses wp_get_object_terms()
2993  *
2994  * @param int $object_id ID of the object (post ID, link ID, ...)
2995  * @param string $taxonomy Single taxonomy name
2996  * @param int|string|array $terms Optional.  Term term_id, name, slug or array of said
2997  * @return bool|WP_Error. WP_Error on input error.
2998  */
2999 function is_object_in_term( $object_id, $taxonomy, $terms = null ) {
3000         if ( !$object_id = (int) $object_id )
3001                 return new WP_Error( 'invalid_object', __( 'Invalid object ID' ) );
3002
3003         $object_terms = get_object_term_cache( $object_id, $taxonomy );
3004         if ( empty( $object_terms ) )
3005                  $object_terms = wp_get_object_terms( $object_id, $taxonomy );
3006
3007         if ( is_wp_error( $object_terms ) )
3008                 return $object_terms;
3009         if ( empty( $object_terms ) )
3010                 return false;
3011         if ( empty( $terms ) )
3012                 return ( !empty( $object_terms ) );
3013
3014         $terms = (array) $terms;
3015
3016         if ( $ints = array_filter( $terms, 'is_int' ) )
3017                 $strs = array_diff( $terms, $ints );
3018         else
3019                 $strs =& $terms;
3020
3021         foreach ( $object_terms as $object_term ) {
3022                 if ( $ints && in_array( $object_term->term_id, $ints ) ) return true; // If int, check against term_id
3023                 if ( $strs ) {
3024                         if ( in_array( $object_term->term_id, $strs ) ) return true;
3025                         if ( in_array( $object_term->name, $strs ) )    return true;
3026                         if ( in_array( $object_term->slug, $strs ) )    return true;
3027                 }
3028         }
3029
3030         return false;
3031 }
3032
3033 /**
3034  * Determine if the given object type is associated with the given taxonomy.
3035  *
3036  * @since 3.0.0
3037  * @uses get_object_taxonomies()
3038  *
3039  * @param string $object_type Object type string
3040  * @param string $taxonomy Single taxonomy name
3041  * @return bool True if object is associated with the taxonomy, otherwise false.
3042  */
3043 function is_object_in_taxonomy($object_type, $taxonomy) {
3044         $taxonomies = get_object_taxonomies($object_type);
3045
3046         if ( empty($taxonomies) )
3047                 return false;
3048
3049         if ( in_array($taxonomy, $taxonomies) )
3050                 return true;
3051
3052         return false;
3053 }
3054
3055 /**
3056  * Get an array of ancestor IDs for a given object.
3057  *
3058  * @param int $object_id The ID of the object
3059  * @param string $object_type The type of object for which we'll be retrieving ancestors.
3060  * @return array of ancestors from lowest to highest in the hierarchy.
3061  */
3062 function get_ancestors($object_id = 0, $object_type = '') {
3063         $object_id = (int) $object_id;
3064
3065         $ancestors = array();
3066
3067         if ( empty( $object_id ) ) {
3068                 return apply_filters('get_ancestors', $ancestors, $object_id, $object_type);
3069         }
3070
3071         if ( is_taxonomy_hierarchical( $object_type ) ) {
3072                 $term = get_term($object_id, $object_type);
3073                 while ( ! is_wp_error($term) && ! empty( $term->parent ) && ! in_array( $term->parent, $ancestors ) ) {
3074                         $ancestors[] = (int) $term->parent;
3075                         $term = get_term($term->parent, $object_type);
3076                 }
3077         } elseif ( null !== get_post_type_object( $object_type ) ) {
3078                 $object = get_post($object_id);
3079                 if ( ! is_wp_error( $object ) && isset( $object->ancestors ) && is_array( $object->ancestors ) )
3080                         $ancestors = $object->ancestors;
3081                 else {
3082                         while ( ! is_wp_error($object) && ! empty( $object->post_parent ) && ! in_array( $object->post_parent, $ancestors ) ) {
3083                                 $ancestors[] = (int) $object->post_parent;
3084                                 $object = get_post($object->post_parent);
3085                         }
3086                 }
3087         }
3088
3089         return apply_filters('get_ancestors', $ancestors, $object_id, $object_type);
3090 }
3091
3092 /**
3093  * Returns the term's parent's term_ID
3094  *
3095  * @since 3.1.0
3096  *
3097  * @param int $term_id
3098  * @param string $taxonomy
3099  *
3100  * @return int|bool false on error
3101  */
3102 function wp_get_term_taxonomy_parent_id( $term_id, $taxonomy ) {
3103         $term = get_term( $term_id, $taxonomy );
3104         if ( !$term || is_wp_error( $term ) )
3105                 return false;
3106         return (int) $term->parent;
3107 }
3108
3109 /**
3110  * Checks the given subset of the term hierarchy for hierarchy loops.
3111  * Prevents loops from forming and breaks those that it finds.
3112  *
3113  * Attached to the wp_update_term_parent filter.
3114  *
3115  * @since 3.1.0
3116  * @uses wp_find_hierarchy_loop()
3117  *
3118  * @param int $parent term_id of the parent for the term we're checking.
3119  * @param int $term_id The term we're checking.
3120  * @param string $taxonomy The taxonomy of the term we're checking.
3121  *
3122  * @return int The new parent for the term.
3123  */
3124 function wp_check_term_hierarchy_for_loops( $parent, $term_id, $taxonomy ) {
3125         // Nothing fancy here - bail
3126         if ( !$parent )
3127                 return 0;
3128
3129         // Can't be its own parent
3130         if ( $parent == $term_id )
3131                 return 0;
3132
3133         // Now look for larger loops
3134
3135         if ( !$loop = wp_find_hierarchy_loop( 'wp_get_term_taxonomy_parent_id', $term_id, $parent, array( $taxonomy ) ) )
3136                 return $parent; // No loop
3137
3138         // Setting $parent to the given value causes a loop
3139         if ( isset( $loop[$term_id] ) )
3140                 return 0;
3141
3142         // There's a loop, but it doesn't contain $term_id.  Break the loop.
3143         foreach ( array_keys( $loop ) as $loop_member )
3144                 wp_update_term( $loop_member, $taxonomy, array( 'parent' => 0 ) );
3145
3146         return $parent;
3147 }