wp_restore_post_revision
Fires after a post revision has been restored.
Description
Parameters (3)
- 0. $array (array) =>
array( __CLASS__, 'restore_revision' )
- The array.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'wp_restore_post_revision', $array, $int, $int );
- The following example is for adding a hook callback.
- // define the wp_restore_post_revision callback
- function action_wp_restore_post_revision( $array, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'wp_restore_post_revision', 'action_wp_restore_post_revision', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'wp_restore_post_revision', 'action_wp_restore_post_revision', 10, 3 );
Defined (3)
The action is defined in the following location(s).
- /modules/custom-css/custom-css.php
- add_action( 'wp_restore_post_revision', array( __CLASS__, 'restore_revision' ), 10, 2 );
- /modules/markdown/easy-markdown.php
- add_action( 'wp_restore_post_revision', array( $this, 'wp_restore_post_revision' ), 10, 2 );
- remove_action( 'wp_restore_post_revision', array( $this, 'wp_restore_post_revision' ), 10, 2 );