NOOP_Translations::select_plural_form( int $count )


Description Description


Parameters Parameters

$count

(int) (Required)


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: wp-includes/pomo/translations.php

		function select_plural_form( $count ) {
			return 1 == $count ? 0 : 1;
		}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.