Changeset 37342 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 05/02/2016 03:59:56 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r37133 r37342 2190 2190 * 2191 2191 * @param string $taxonomy Taxonomy name. 2192 * @param array|string $args Optional. Array of arguments that get passed to {@see get_terms()}.2192 * @param array|string $args Optional. Array of arguments that get passed to get_terms(). 2193 2193 * Default empty array. 2194 2194 * @return array|int|WP_Error Number of terms in that taxonomy or WP_Error if the taxonomy does not exist. … … 2682 2682 * @param string $taxonomies SQL-formatted (comma-separated and quoted) list of taxonomy names. 2683 2683 * @param array $args An array of arguments for retrieving terms for the given object(s). 2684 * See {@see wp_get_object_terms()}for details.2684 * See wp_get_object_terms() for details. 2685 2685 */ 2686 2686 return apply_filters( 'wp_get_object_terms', $terms, $object_ids, $taxonomies, $args ); … … 2728 2728 * } 2729 2729 * @return array|WP_Error An array containing the `term_id` and `term_taxonomy_id`, 2730 * {@see WP_Error}otherwise.2730 * WP_Error otherwise. 2731 2731 */ 2732 2732 function wp_insert_term( $term, $taxonomy, $args = array() ) { … … 4208 4208 } 4209 4209 4210 // Keep a record of term_ids that have been split, keyed by old term_id. See {@see wp_get_split_term()}.4210 // Keep a record of term_ids that have been split, keyed by old term_id. See wp_get_split_term(). 4211 4211 if ( $record ) { 4212 4212 $split_term_data = get_option( '_split_terms', array() );
Note: See TracChangeset
for help on using the changeset viewer.