Changeset 47577
- Timestamp:
- 04/14/2020 12:32:37 AM (4 years ago)
- Location:
- branches/5.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.4
-
branches/5.4/src/wp-includes/taxonomy.php
r47219 r47577 4249 4249 * 4250 4250 * @since 2.3.0 4251 * @deprecated 2.5.0 Use {@see 'term_link'} instead.4252 4251 * 4253 4252 * @param string $termlink Tag link URL. 4254 4253 * @param int $term_id Term ID. 4255 4254 */ 4256 $termlink = apply_filters _deprecated( 'tag_link', array( $termlink, $term->term_id ), '2.5.0', 'term_link');4255 $termlink = apply_filters( 'tag_link', $termlink, $term->term_id ); 4257 4256 } elseif ( 'category' === $taxonomy ) { 4258 4257 … … 4261 4260 * 4262 4261 * @since 1.5.0 4263 * @deprecated 2.5.0 Use {@see 'term_link'} instead.4264 4262 * 4265 4263 * @param string $termlink Category link URL. 4266 4264 * @param int $term_id Term ID. 4267 4265 */ 4268 $termlink = apply_filters _deprecated( 'category_link', array( $termlink, $term->term_id ), '2.5.0', 'term_link');4266 $termlink = apply_filters( 'category_link', $termlink, $term->term_id ); 4269 4267 } 4270 4268
Note: See TracChangeset
for help on using the changeset viewer.