__ngettext() – Retrieve the plural or single form based on the amount.

You appear to be a bot. Output may be restricted

Description

Retrieve the plural or single form based on the amount.

Usage

__ngettext( $args );

Parameters

$args
( mixed ) optional

Returns

void

Source

File name: wordpress/wp-includes/deprecated.php
Lines:

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

 View on GitHub View on Trac