On this page
_n_noop( string $singular, string $plural, string $domain = null ): array
Registers plural strings in POT file, but does not translate them.
Description
Used when you want to keep structures with translatable plural strings and use them later when the number is known.
Example:
$message = _n_noop( '%s post', '%s posts', 'text-domain' );
...
printf( translate_nooped_plural( $message, $count, 'text-domain' ), number_format_i18n( $count ) );
Parameters
$singularstring Required-
Singular form to be localized.
$pluralstring Required-
Plural form to be localized.
$domainstring Optional-
Text domain. Unique identifier for retrieving translated strings.
Default:
null
Return
array Array of translation information for the strings.
- string
Singular form to be localized. No longer used.
1stringPlural form to be localized. No longer used.singularstringSingular form to be localized.pluralstringPlural form to be localized.contextnullContext information for the translators.domainstring|nullText domain.
Source
File: wp-includes/l10n.php. View all references
function _n_noop( $singular, $plural, $domain = null ) {
return array(
0 => $singular,
1 => $plural,
'singular' => $singular,
'plural' => $plural,
'context' => null,
'domain' => $domain,
);
}
Related
Used By
| Used By | Description |
|---|---|
| WP_Widget_Media::get_l10n_defaults() wp-includes/widgets/class-wp-widget-media.php | Returns the default localized strings used by the widget. |
| WP_MS_Sites_List_Table::get_views() wp-admin/includes/class-wp-ms-sites-list-table.php | Gets links to filter sites by status. |
| WP_Widget_Media_Audio::__construct() wp-includes/widgets/class-wp-widget-media-audio.php | Constructor. |
| WP_Widget_Media_Video::__construct() wp-includes/widgets/class-wp-widget-media-video.php | Constructor. |
| WP_Widget_Media_Image::__construct() wp-includes/widgets/class-wp-widget-media-image.php | Constructor. |
| wp_generate_tag_cloud() wp-includes/category-template.php | Generates a tag cloud (heatmap) from provided data. |
| __ngettext_noop() wp-includes/deprecated.php | Register plural strings in POT file, but don’t translate them. |
| get_post_mime_types() wp-includes/post.php | Gets default post mime types. |
| register_post_status() wp-includes/post.php | Registers a post status. Do not use before init. |
| create_initial_post_types() wp-includes/post.php | Creates the initial post types when ‘init’ action is fired. |
Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_n_noop