post_lock_lost_dialog action-hook . WP 3.6.0
Fires inside the dialog displayed when a user has lost the post lock.
Usage
add_action( 'post_lock_lost_dialog', 'action_function_name_4015' ); function action_function_name_4015( $post ){ // action... }
- $post(WP_Post)
- Post object.
Changelog
Since 3.6.0 | Introduced. |
Where the hook is called
wp-admin/includes/post.php 1798
do_action( 'post_lock_lost_dialog', $post );