__ngettext_noop()
Deprecated since 2.8.0. It is no longer supported and may be removed in future releases. Use _n_noop() instead.
Register plural strings in POT file, but don't translate them.
Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.
No Hooks.
Returns
null. Nothing (null).
Usage
__ngettext_noop( ...$args );
- ...$args(required)
- .
Notes
- See: _n_noop()
Changelog
| Since 2.5.0 | Introduced. |
| Deprecated since 2.8.0 | Use _n_noop() |
__ngettext_noop() ngettext noop code WP 6.9
function __ngettext_noop( ...$args ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore
_deprecated_function( __FUNCTION__, '2.8.0', '_n_noop()' );
return _n_noop( ...$args );
}