Changeset 46823 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 12/06/2019 10:41:26 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/taxonomy.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r46696 r46823 3684 3684 * @global wpdb $wpdb WordPress database abstraction object. 3685 3685 * 3686 * @param array$terms List of Term taxonomy IDs.3687 * @param object$taxonomy Current taxonomy object of terms.3686 * @param int[] $terms List of Term taxonomy IDs. 3687 * @param WP_Taxonomy $taxonomy Current taxonomy object of terms. 3688 3688 */ 3689 3689 function _update_post_term_count( $terms, $taxonomy ) { … … 3739 3739 * @global wpdb $wpdb WordPress database abstraction object. 3740 3740 * 3741 * @param array$terms List of term taxonomy IDs.3742 * @param object$taxonomy Current taxonomy object of terms.3741 * @param int[] $terms List of term taxonomy IDs. 3742 * @param WP_Taxonomy $taxonomy Current taxonomy object of terms. 3743 3743 */ 3744 3744 function _update_generic_term_count( $terms, $taxonomy ) { … … 4173 4173 * @global WP_Rewrite $wp_rewrite WordPress rewrite component. 4174 4174 * 4175 * @param object|int|string $term The term object, ID, or slug whose link will be retrieved.4176 * @param string $taxonomy Optional. Taxonomy. Default empty.4175 * @param WP_Term|int|string $term The term object, ID, or slug whose link will be retrieved. 4176 * @param string $taxonomy Optional. Taxonomy. Default empty. 4177 4177 * @return string|WP_Error URL of the taxonomy term archive on success, WP_Error if term does not exist. 4178 4178 */ … … 4270 4270 * @since 2.5.0 4271 4271 * 4272 * @param string $termlink Term link URL.4273 * @param object$term Term object.4274 * @param string $taxonomy Taxonomy slug.4272 * @param string $termlink Term link URL. 4273 * @param WP_Term $term Term object. 4274 * @param string $taxonomy Taxonomy slug. 4275 4275 */ 4276 4276 return apply_filters( 'term_link', $termlink, $term, $taxonomy );
Note: See TracChangeset
for help on using the changeset viewer.