WP_HTML_Processor::generate_implied_end_tags_thoroughly()

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only by core. It is listed here for completeness.

Closes elements that have implied end tags, thoroughly.

Description

See the HTML specification for an explanation why this is different from generating end tags in the normal sense.

See also

Source

private function generate_implied_end_tags_thoroughly(): void {
	$elements_with_implied_end_tags = array(
		'CAPTION',
		'COLGROUP',
		'DD',
		'DT',
		'LI',
		'OPTGROUP',
		'OPTION',
		'P',
		'RB',
		'RP',
		'RT',
		'RTC',
		'TBODY',
		'TD',
		'TFOOT',
		'TH',
		'THEAD',
		'TR',
	);

	while ( in_array( $this->state->stack_of_open_elements->current_node()->node_name, $elements_with_implied_end_tags, true ) ) {
		$this->state->stack_of_open_elements->pop();
	}
}

Changelog

VersionDescription
6.7.0Full spec support.
6.4.0Introduced.

User Contributed Notes

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