apply_filters( 'ngettext', string $translation , string $single , string $plural , string $number , string $domain )
Filters the singular or plural form of a string.
Description Description
Parameters Parameters
- $translation
-
(string) Translated text.
- $single
-
(string) The text to be used if the number is singular.
- $plural
-
(string) The text to be used if the number is plural.
- $number
-
(string) The number to compare against to use either the singular or plural form.
- $domain
-
(string) Text domain. Unique identifier for retrieving translated strings.
Source Source
File: wp-includes/l10n.php
Changelog Changelog
Version | Description |
---|---|
2.2.0 | Introduced. |