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

__ngettext()

Retrieve the plural or single form based on the amount.


Description

See also


Source

File: wp-includes/deprecated.php

function __ngettext() {
	_deprecated_function( __FUNCTION__, 'WP-2.8.0', '_n()' );
	$args = func_get_args();
	return call_user_func_array('_n', $args);
}


Changelog

Changelog
Version Description
WP-2.8.0 Use _n()
WP-1.2.0 Introduced. This function has been deprecated. Use _n() instead.