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.
Contents
Parameters
- $parser
(resource)(Required)XML Parser resource.
- $tag_name
(string)(Required)XML tag name.
Source
File: wp-admin/link-parse-opml.php
function endElement( $parser, $tag_name ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid // Nothing to do. }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
0.71 | Introduced. |