get_edit_bookmark_link filter-hook . WP 2.7.0
Filters the bookmark edit link.
Usage
add_filter( 'get_edit_bookmark_link', 'filter_function_name_3941', 10, 2 ); function filter_function_name_3941( $location, $link_id ){ // filter... return $location; }
- $location(string)
- The edit link.
- $link_id(int)
- Bookmark ID.
Changelog
Since 2.7.0 | Introduced. |
Where the hook is called
get_edit_bookmark_link
wp-includes/link-template.php 1582
return apply_filters( 'get_edit_bookmark_link', $location, $link->link_id );