W3cubDocs

/WordPress

wxr_tag_name( object $tag )

Output a tag_name XML tag from a given tag object

Parameters

$tag

(object) (Required) Tag Object

Source

File: wp-admin/includes/export.php

function wxr_tag_name( $tag ) {
		if ( empty( $tag->name ) ) {
			return;
		}

		echo '<wp:tag_name>' . wxr_cdata( $tag->name ) . "</wp:tag_name>\n";
	}

Changelog

Version Description
2.3.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wxr_tag_name