NOOP_Translations::select_plural_form() –

You appear to be a bot. Output may be restricted

Description

Usage

$bool = NOOP_Translations::select_plural_form( $count );

Parameters

$count
( int ) required

Returns

bool

Source

File name: wordpress/wp-includes/pomo/translations.php


Lines:

1 to 4 of 4
    public function select_plural_form( $count ) {
      return 1 === (int) $count ? 0 : 1;
    }
 

 View on GitHub View on Trac