_nc( string $single, string $plural, int $number, string $domain = 'default' ): string
- Since
- 2.7.0
- Source
wp-includes/deprecated.php:1814
Legacy version of _n(), which supports contexts.
Description
Strips everything from the translation after the last bar.
Parameters
$singlestring- The text to be used if the number is singular.
$pluralstring- The text to be used if the number is plural.
$numberint- The number to compare against to use either the singular or plural form.
$domainstringoptional- Text domain. Unique identifier for retrieving translated strings. Default 'default'.Default:
'default'
Return
string- The translated singular or plural form.
Uses · 3
- _deprecated_function()Marks a function as deprecated and inform when it has been used.
- before_last_bar()Removes last item on a pipe-delimited string.
- _n()Translates and retrieves the singular or plural form based on the supplied number.
Source
function _nc( $single, $plural, $number, $domain = 'default' ) { _deprecated_function( __FUNCTION__, '2.9.0', '_nx()' ); return before_last_bar( _n( $single, $plural, $number, $domain ) );}History
Introduced in 2.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
3.0.0
Deprecated. Use _nx()from the docblock
2.7.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 7.0.4 tag, from
src/wp-includes/deprecated.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.