endElement

Advertisement

Private Access Private Access

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.

Summery Summery

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

Syntax Syntax

endElement( resource $parser, string $tag_name )

Parameters Parameters

$parser

(Required) XML Parser resource.

$tag_name

(Required) XML tag name.

Source Source

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

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

Advertisement

Changelog Changelog

Changelog
Version Description
0.71 Introduced.

Advertisement

Leave a Reply