edit_tag_link filter-hook . WP 2.7.0
Filters the anchor tag for the edit link for a tag (or term in another taxonomy).
Usage
add_filter( 'edit_tag_link', 'filter_function_name_5330' ); function filter_function_name_5330( $link ){ // filter... return $link; }
- $link(string)
- The anchor tag for the edit link.
Changelog
Since 2.7.0 | Introduced. |
Where the hook is called
edit_tag_link
wp-includes/link-template.php 985
echo $before . apply_filters( 'edit_tag_link', $link ) . $after;