delete_link action-hook . WP 2.0.0
Fires before a link is deleted.
Usage
add_action( 'delete_link', 'action_function_name_3430' ); function action_function_name_3430( $link_id ){ // action... }
- $link_id(int)
- ID of the link to delete.
Changelog
Since 2.0.0 | Introduced. |
Where the hook is called
delete_link
wp-admin/includes/bookmark.php 99
do_action( 'delete_link', $link_id );