From a21b8a91c6545324f16d823ef9971197a0c2382f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 14 Apr 2020 08:15:19 +0000 Subject: [PATCH] Docs: Add a `@since` note for un-deprecated `category_link` and `tag_link` filters. Follow-up to [47576]. See #49759. Built from https://develop.svn.wordpress.org/trunk@47578 git-svn-id: http://core.svn.wordpress.org/trunk@47353 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 4 ++++ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index aedc841fe1..abb92f2e93 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -4266,6 +4266,8 @@ function get_term_link( $term, $taxonomy = '' ) { * Filters the tag link. * * @since 2.3.0 + * @since 2.5.0 Deprecated in favor of {@see 'term_link'} filter. + * @since 5.4.1 Restored (un-deprecated). * * @param string $termlink Tag link URL. * @param int $term_id Term ID. @@ -4277,6 +4279,8 @@ function get_term_link( $term, $taxonomy = '' ) { * Filters the category link. * * @since 1.5.0 + * @since 2.5.0 Deprecated in favor of {@see 'term_link'} filter. + * @since 5.4.1 Restored (un-deprecated). * * @param string $termlink Category link URL. * @param int $term_id Term ID. diff --git a/wp-includes/version.php b/wp-includes/version.php index 676c13bac8..307253501c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47576'; +$wp_version = '5.5-alpha-47578'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.