Plural_Forms::__construct()publicWP 4.9.0

Constructor.

Method of the class: Plural_Forms{}

No Hooks.

Return

null. Nothing (null).

Usage

$Plural_Forms = new Plural_Forms();
$Plural_Forms->__construct( $str );
$str(string) (required)
Plural function (just the bit after plural= from Plural-Forms)

Changelog

Since 4.9.0 Introduced.

Plural_Forms::__construct() code WP 6.5.2

public function __construct( $str ) {
	$this->parse( $str );
}