Coding Standards: Fix an incorrect `phpcs:ignore` comment.
It's `phpcs:ignore`, not `wpcs:ignore`. Props GaryJ. See #45934. git-svn-id: https://develop.svn.wordpress.org/trunk@44570 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ff53bd388c
commit
358d65b9c7
|
@ -836,7 +836,7 @@ function wp_generate_tag_cloud( $tags, $args = '' ) {
|
||||||
} elseif ( ! empty( $args['topic_count_text_callback'] ) ) {
|
} elseif ( ! empty( $args['topic_count_text_callback'] ) ) {
|
||||||
// Look for the alternative callback style. Ignore the previous default.
|
// Look for the alternative callback style. Ignore the previous default.
|
||||||
if ( $args['topic_count_text_callback'] === 'default_topic_count_text' ) {
|
if ( $args['topic_count_text_callback'] === 'default_topic_count_text' ) {
|
||||||
// wpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralPlural
|
// phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralSingle,WordPress.WP.I18n.NonSingularStringLiteralPlural
|
||||||
$translate_nooped_plural = _n_noop( '%s item', '%s items' );
|
$translate_nooped_plural = _n_noop( '%s item', '%s items' );
|
||||||
} else {
|
} else {
|
||||||
$translate_nooped_plural = false;
|
$translate_nooped_plural = false;
|
||||||
|
|
Loading…
Reference in New Issue