get_edit_tag_link( int|WP_Term|object $tag, string $taxonomy = ‘post_tag’ ): string

In this article

Retrieves the edit link for a tag.

Parameters

$tagint|WP_Term|objectrequired
The ID or term object whose edit link will be retrieved.
$taxonomystringoptional
Taxonomy slug. Default 'post_tag'.

Default:'post_tag'

Return

string The edit tag link URL for the given tag.

Source

function get_edit_tag_link( $tag, $taxonomy = 'post_tag' ) {
	/**
	 * Filters the edit link for a tag (or term in another taxonomy).
	 *
	 * @since 2.7.0
	 *
	 * @param string $link The term edit link.
	 */
	return apply_filters( 'get_edit_tag_link', get_edit_term_link( $tag, $taxonomy ) );
}

Hooks

apply_filters( ‘get_edit_tag_link’, string $link )

Filters the edit link for a tag (or term in another taxonomy).

Changelog

VersionDescription
2.7.0Introduced.

User Contributed Notes

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