Gettext_Translations::set_header()publicWP 1.0

Method of the class: Gettext_Translations{}

No Hooks.

Return

null. Nothing (null).

Usage

$Gettext_Translations = new Gettext_Translations();
$Gettext_Translations->set_header( $header, $value );
$header(string) (required)
-
$value(string) (required)
-

Gettext_Translations::set_header() code WP 6.4.3

public function set_header( $header, $value ) {
	parent::set_header( $header, $value );
	if ( 'Plural-Forms' === $header ) {
		list( $nplurals, $expression )     = $this->nplurals_and_expression_from_header( $this->get_header( 'Plural-Forms' ) );
		$this->_nplurals                   = $nplurals;
		$this->_gettext_select_plural_form = $this->make_plural_form_function( $nplurals, $expression );
	}
}