Changeset 46684 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 11/09/2019 12:57:27 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r46660 r46684 4250 4250 * @param int $term_id Term ID. 4251 4251 */ 4252 $termlink = apply_filters ( 'tag_link', $termlink, $term->term_id);4252 $termlink = apply_filters_deprecated( 'tag_link', array( $termlink, $term->term_id ), '2.5.0', 'term_link' ); 4253 4253 } elseif ( 'category' === $taxonomy ) { 4254 4254 … … 4262 4262 * @param int $term_id Term ID. 4263 4263 */ 4264 $termlink = apply_filters ( 'category_link', $termlink, $term->term_id);4264 $termlink = apply_filters_deprecated( 'category_link', array( $termlink, $term->term_id ), '2.5.0', 'term_link' ); 4265 4265 } 4266 4266
Note: See TracChangeset
for help on using the changeset viewer.