Changeset 48941 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 09/04/2020 08:39:47 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r48843 r48941 887 887 * Filters a taxonomy term object. 888 888 * 889 * The {@see 'get_$taxonomy'} hook is also available for targeting a specific 890 * taxonomy. 891 * 889 892 * @since 2.3.0 890 893 * @since 4.4.0 `$_term` is now a `WP_Term` object. … … 1987 1990 * Fires after a term is deleted from the database and the cache is cleaned. 1988 1991 * 1992 * The {@see 'delete_$taxonomy'} hook is also available for targeting a specific 1993 * taxonomy. 1994 * 1989 1995 * @since 2.5.0 1990 1996 * @since 4.5.0 Introduced the `$object_ids` argument. … … 1993 1999 * @param int $tt_id Term taxonomy ID. 1994 2000 * @param string $taxonomy Taxonomy slug. 1995 * @param mixed $deleted_term Copy of the already-deleted term, in the form specified 1996 * by the parent function. WP_Error otherwise. 2001 * @param WP_Term $deleted_term Copy of the already-deleted term. 1997 2002 * @param array $object_ids List of term object IDs. 1998 2003 */ … … 2010 2015 * @param int $term Term ID. 2011 2016 * @param int $tt_id Term taxonomy ID. 2012 * @param mixed $deleted_term Copy of the already-deleted term, in the form specified 2013 * by the parent function. WP_Error otherwise. 2017 * @param WP_Term $deleted_term Copy of the already-deleted term. 2014 2018 * @param array $object_ids List of term object IDs. 2015 2019 */ … … 2182 2186 * @param string $taxonomy The taxonomy to which to add the term. 2183 2187 * @param array|string $args { 2184 * Optional. Array or string of arguments for inserting a term.2188 * Optional. Array or query string of arguments for inserting a term. 2185 2189 * 2186 2190 * @type string $alias_of Slug of the term to make this term an alias of. … … 3105 3109 3106 3110 /** 3107 * Fires immediately after the given terms are edited. 3111 * Fires immediately after a term is updated in the database, but before its 3112 * term-taxonomy relationship is updated. 3108 3113 * 3109 3114 * @since 2.9.0 … … 3138 3143 /** 3139 3144 * Fires after a term has been updated, but before the term cache has been cleaned. 3145 * 3146 * The {@see 'edit_$taxonomy'} hook is also available for targeting a specific 3147 * taxonomy. 3140 3148 * 3141 3149 * @since 2.3.0 … … 3167 3175 /** 3168 3176 * Fires after a term has been updated, and the term cache has been cleaned. 3177 * 3178 * The {@see 'edited_$taxonomy'} hook is also available for targeting a specific 3179 * taxonomy. 3169 3180 * 3170 3181 * @since 2.3.0
Note: See TracChangeset
for help on using the changeset viewer.