wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



__ngettext › WordPress Function

Da1.2.0
Deprecato2.8.0
__ngettext ( $args )
Vedi:
Definito a:
Codex:

Retrieve the plural or single form based on the amount.



Sorgenti

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