Translations::get_plural_forms_count()publicWP 2.8.0

Returns the plural forms count.

Method of the class: Translations{}

No Hooks.

Return

Int. Plural forms count.

Usage

$Translations = new Translations();
$Translations->get_plural_forms_count();

Changelog

Since 2.8.0 Introduced.

Translations::get_plural_forms_count() code WP 6.5.2

public function get_plural_forms_count() {
	return 2;
}