WP_HTML_Processor::generate_implied_end_tags( string|null $except_for_this_element = null )

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use https://html.spec.whatwg.org/#generate-implied-end-tags instead.

Closes elements that have implied end tags.

Description

See also

Parameters

$except_for_this_elementstring|nulloptional
Perform as if this element doesn’t exist in the stack of open elements.

Default:null

Source

		 * > Otherwise, for each attribute on the token, check to see if the attribute
		 * > is already present on the top element of the stack of open elements. If
		 * > it is not, add the attribute and its corresponding value to that element.
		 *
		 * This parser does not currently support this behavior: ignore the token.
		 */
	}

	// Ignore the token.
	return $this->step();

/*
 * > A start tag whose tag name is one of: "base", "basefont", "bgsound", "link",
 * > "meta", "noframes", "script", "style", "template", "title"
 * >
 * > An end tag whose tag name is "template"

Changelog

VersionDescription
6.4.0Introduced.

User Contributed Notes

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