wordpress / latest / classes / noop_translations / translate_plural.html

NOOP_Translations::translate_plural( string $singular, string $plural, int $count, string $context = null )

Parameters

$singular string Required
$plural string Required
$count int Required
$context string Optional

Default: null

Source

File: wp-includes/pomo/translations.php. View all references

public function translate_plural( $singular, $plural, $count, $context = null ) {
	return 1 == $count ? $singular : $plural;
}

© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/noop_translations/translate_plural