wpseek.com
A WordPress-centric search engine for devs and theme authors



__ngettext_noop › WordPress Function

Since2.5.0
Deprecated2.8.0
__ngettext_noop ( $args )
See:
Defined at:
Codex:

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



Source

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

}