wp-includes/link-template.php:1055Displays or retrieves the edit link for a tag with formatting.
$linkstringoptional''$beforestringoptional''$afterstringoptional''$tagWP_TermoptionalnullOne hook fires while edit_tag_link() runs, in this order:
Filters the anchor tag for the edit link for a tag (or term in another taxonomy).
function edit_tag_link( $link = '', $before = '', $after = '', $tag = null ) { $link = edit_term_link( $link, '', '', $tag, false ); /** * Filters the anchor tag for the edit link for a tag (or term in another taxonomy). * * @since 2.7.0 * * @param string $link The anchor tag for the edit link. */ echo $before . apply_filters( 'edit_tag_link', $link ) . $after;}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.