wp-includes/link-template.php:1033Retrieves the edit link for a tag.
$tagint|WP_Term|object$taxonomystringoptional'post_tag'stringOne hook fires while get_edit_tag_link() runs, in this order:
Filters the edit link for a tag (or term in another taxonomy).
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 ) );}Introduced in 2.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/link-template.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.