Warning: This function has been deprecated. Use _n() instead.

__ngettext( $args )

Retrieve the plural or single form based on the amount.


Description Description

See also See also


Top ↑

Source Source

File: wp-includes/deprecated.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
2.8.0 Use _n()
1.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.