On this page
apply_filters( "ngettext_{$domain}", string $translation, string $single, string $plural, int $number, string $domain )
Filters the singular or plural form of a string for a domain.
Description
The dynamic portion of the hook name, $domain, refers to the text domain.
Parameters
$translationstring-
Translated text.
$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.
$domainstring-
Text domain. Unique identifier for retrieving translated strings.
Source
File: wp-includes/l10n.php. View all references
$translation = apply_filters( "ngettext_{$domain}", $translation, $single, $plural, $number, $domain );
Related
Used By
| Used By | Description |
|---|---|
| _n() wp-includes/l10n.php | Translates and retrieves the singular or plural form based on the supplied number. |
Changelog
| Version | Description |
|---|---|
| 5.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/ngettext_domain