Retrieve the plural or single form based on the amount.
Description
See also
Source
function __ngettext( ...$args ) {
_deprecated_function( __FUNCTION__, '2.8.0', '_n()' );
return _n( ...$args );
}
This function has been deprecated since 2.8.0. Use _n() instead.
Retrieve the plural or single form based on the amount.
function __ngettext( ...$args ) {
_deprecated_function( __FUNCTION__, '2.8.0', '_n()' );
return _n( ...$args );
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.