Alert: 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.

endElement() WordPress Function

The endElement() function is used to close an HTML element. This function is typically used in conjunction with the startElement() function.

endElement( resource $parser, string $tag_name ) #

XML callback function that is called at the end of a XML tag.


Parameters

$parser

(resource)(Required)XML Parser resource.

$tag_name

(string)(Required)XML tag name.


Top ↑

Source

File: wp-admin/link-parse-opml.php

function endElement( $parser, $tag_name ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	// Nothing to do.
}

Top ↑

Changelog

Changelog
VersionDescription
0.71Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.