edit_tag_link хук-фильтр . WP 2.7.0
Filters the anchor tag for the edit link for a tag (or term in another taxonomy).
Использование
add_filter( 'edit_tag_link', 'filter_function_name_1054' ); function filter_function_name_1054( $link ){ // filter... return $link; }
- $link(строка)
- The anchor tag for the edit link.
Список изменений
С версии 2.7.0 | Введена. |
Где вызывается хук
edit_tag_link
wp-includes/link-template.php 985
echo $before . apply_filters( 'edit_tag_link', $link ) . $after;