__ngettext_noop()WP 2.5.0

Deprecated from version 2.8.0. It is no longer supported and can be removed in future releases. Use _n_noop() instead.

Register plural strings in POT file, but don't translate them.

No Hooks.

Return

null. Nothing (null).

Usage

__ngettext_noop( ...$args );
...$args (required)
-

Notes

Changelog

Since 2.5.0 Introduced.
Deprecated since 2.8.0 Use _n_noop()

__ngettext_noop() code WP 6.5.2

function __ngettext_noop( ...$args ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore
	_deprecated_function( __FUNCTION__, '2.8.0', '_n_noop()' );
	return _n_noop( ...$args );

}