_n

Advertisement

Summery Summery

Translates and retrieves the singular or plural form based on the supplied number.

Syntax Syntax

_n( string $single, string $plural, int $number, string $domain = 'default' )

Description Description

Used when you want to use the appropriate form of a string based on whether a number is singular or plural.

Example:

printf( _n( '%s person', '%s people', $count, 'text-domain' ), number_format_i18n( $count ) );

Parameters Parameters

$single

(Required) The text to be used if the number is singular.

$plural

(Required) The text to be used if the number is plural.

$number

(Required) The number to compare against to use either the singular or plural form.

$domain

(Optional) Text domain. Unique identifier for retrieving translated strings. Default 'default'.

Default value: 'default'

Return Return

(string) The translated singular or plural form.

Source Source

File: wp-includes/l10n.php

 *
 * If there is no translation, or the text domain isn't loaded, the original text
 * is escaped and returned.
 *
 * @since 2.9.0
 *
 * @param string $text    Text to translate.
 * @param string $context Context information for the translators.
 * @param string $domain  Optional. Text domain. Unique identifier for retrieving translated strings.
 *                        Default 'default'.
 * @return string Translated text.
 */
function esc_html_x( $text, $context, $domain = 'default' ) {
	return esc_html( translate_with_gettext_context( $text, $context, $domain ) );
}

/**

Advertisement

Changelog Changelog

Changelog
Version Description
2.8.0 Introduced.

Advertisement

Leave a Reply