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

 * @return bool Whether the bookmark already existed before removal.
 */
public function release_bookmark( $name ): bool {
	if ( ! array_key_exists( $name, $this->bookmarks ) ) {
		return false;
	}

	unset( $this->bookmarks[ $name ] );

Changelog

VersionDescription
6.3.2Introduced.

User Contributed Notes

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