WP_HTML_Tag_Processor::__construct()publicWP 6.2.0

Constructor.

Method of the class: WP_HTML_Tag_Processor{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_HTML_Tag_Processor = new WP_HTML_Tag_Processor();
$WP_HTML_Tag_Processor->__construct( $html );
$html(string) (required)
HTML to process.

Changelog

Since 6.2.0 Introduced.

WP_HTML_Tag_Processor::__construct() code WP 6.6.2

public function __construct( $html ) {
	$this->html = $html;
}