delete_link WordPress Action Hook
The delete_link hook allows you to modify the link that is displayed when you hover over a post in the WordPress admin area. This can be useful if you want to change the behavior of the link, or if you want to add a confirmation message before the post is deleted.
do_action( 'delete_link', int $link_id ) #
Fires before a link is deleted.
Parameters
- $link_id
(int)ID of the link to delete.
Source
Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |