wxr_tag_name( object $tag )

Output a tag_name XML tag from a given tag object


Description Description


Parameters Parameters

$tag

(object) (Required) Tag Object


Top ↑

Source 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";
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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