Exciting News! Flipper Code is now WePlugins! Same commitment to excellence, brand new identity.

How to use post_lock_lost_dialog action in WordPress

Sandeep Kumar Mishra
Sandeep Kumar Mishra
February 13, 2023
5 minutes read

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 an action hook, which is used whenever a user loses the post lock. It fires inside the dialog displayed.

It consists of one parameter $post, which contains the post object to be used.

Parameters

  • $post : (WP_Post) Post object.

Live Examples

Running the Hook

To run the hook, copy the example below.

	// run the action 
	do_action( 'post_lock_lost_dialog', $post ); 
	

Adding a Hook Callback

The following example is for adding a hook callback.

	// define the weplugins_post_lock_lost_dialog callback 
	function weplugins_action_post_lock_lost_dialog( $post ) { 
		// make action magic happen here... 
	}; 
			 
	// add the action 
	add_action( 'post_lock_lost_dialog', 'weplugins_action_post_lock_lost_dialog', 10, 1 ); 
	

Removing a Hook Callback

To remove a hook callback, use the example below.

	// remove the action 
	remove_action( 'post_lock_lost_dialog', 'weplugins_action_post_lock_lost_dialog', 10, 1 );
	

Access Premium WordPress Plugins

Contact Us

If you need customization or have any questions, feel free to contact us.

Sandeep Kumar Mishra

Sandeep Kumar Mishra

Sandeep Kumar Mishra writes about WordPress and Artificial Intelligence, offering tips and guides to help you master your website and stay updated with the latest tech trends.

Explore the latest in WordPress

Trying to stay on top of it all? Get the best tools, resources and inspiration sent to your inbox every Wednesday.