wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



__ngettext › WordPress Function

Desde1.2.0
Obsoleto2.8.0
__ngettext ( $args )
Ver:
Definido em:
Codex:

Retrieve the plural or single form based on the amount.



Fonte

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