Summery Summery
Retrieves the edit link for a tag.
Syntax Syntax
Parameters Parameters
- $tag_id
-
(Required) Tag ID.
- $taxonomy
-
(Optional) Taxonomy slug. Default 'post_tag'.
Default value: 'post_tag'
Return Return
(string) The edit tag link URL for the given tag.
Source Source
File: wp-includes/link-template.php
function get_edit_tag_link( $tag_id, $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_id, $taxonomy ) );
}
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 2.7.0 | Introduced. |