post_lock_lost_dialog action
Fires inside the dialog displayed when a user has lost the post lock.
do_action( 'post_lock_lost_dialog', WP_Post $post )
Description
This is action hook , which is used whenever user lost the post lock , its fires inside dialog displayed.
It consists of one parameter $post, which is contain post object to be used.
Parameters
- $post : (WP_Post) Post object.
Live Example
To run the hook, copy the example below.
// run the action do_action( 'post_lock_lost_dialog', $post );
The following example is for adding a hook callback.
// define the post_lock_lost_dialog callback function action_post_lock_lost_dialog( $post ) { // make action magic happen here... }; // add the action add_action( 'post_lock_lost_dialog', 'action_post_lock_lost_dialog', 10, 1 );
To remove a hook callback, use the example below.
// remove the action remove_action( 'post_lock_lost_dialog', 'action_post_lock_lost_dialog', 10, 1 );