Twenty Nineteen: Remove a legacy WPCS annotation.

References:
* [https://github.com/WordPress/WordPress-Coding-Standards/pull/1580 WPCS: Deprecate use of the WPCS native whitelist comments]
* [https://github.com/WordPress/WordPress-Coding-Standards/pull/1908 WPCS: 3.0: Remove deprecated Sniff::has_whitelist_comment() method and all references to it]

Follow-up to [43808].

Props rodrigosprimo, mukesh27.
See #64627.
Built from https://develop.svn.wordpress.org/trunk@61630


git-svn-id: http://core.svn.wordpress.org/trunk@60941 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov
2026-02-12 21:14:39 +00:00
parent 7776fd2008
commit bfaa630f7e
2 changed files with 3 additions and 3 deletions
@@ -92,7 +92,7 @@ if ( ! function_exists( 'twentynineteen_entry_footer' ) ) :
/* translators: Hidden accessibility text. */
__( 'Posted in', 'twentynineteen' ),
$categories_list
); // WPCS: XSS OK.
);
}
$tags_list = get_the_tag_list( '', wp_get_list_item_separator() );
@@ -104,7 +104,7 @@ if ( ! function_exists( 'twentynineteen_entry_footer' ) ) :
/* translators: Hidden accessibility text. */
__( 'Tags:', 'twentynineteen' ),
$tags_list
); // WPCS: XSS OK.
);
}
}
+1 -1
View File
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '7.0-alpha-61629';
$wp_version = '7.0-alpha-61630';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.