WP_HTML_Tag_Processor::skip_rawtext( string $tag_name ): bool

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.

Skips contents of generic rawtext elements.

Description

See also

Parameters

$tag_namestringrequired
The uppercase tag name which will close the RAWTEXT region.

Return

bool Whether an end to the RAWTEXT region was found before the end of the document.

Source

 *
 * @param string $tag_name The uppercase tag name which will close the RAWTEXT region.
 * @return bool Whether an end to the RAWTEXT region was found before the end of the document.
 */
private function skip_rawtext( string $tag_name ): bool {
	/*
	 * These two functions distinguish themselves on whether character references are
	 * decoded, and since functionality to read the inner markup isn't supported, it's

Changelog

VersionDescription
6.3.2Introduced.

User Contributed Notes

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