wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



__ngettext › WordPress Function

Seit1.2.0
Veraltet2.8.0
__ngettext ( $args )
Siehe:
Definiert in:
Codex:

Retrieve the plural or single form based on the amount.



Quellcode

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