untrash_post_comments
Fires before comments are restored for a post from the trash.
Description
Parameters (1)
- 0. $callable (unknown)
- The callable.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'untrash_post_comments', $callable );
- The following example is for adding a hook callback.
- // define the untrash_post_comments callback
- function action_untrash_post_comments( $callable ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'untrash_post_comments', 'action_untrash_post_comments', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'untrash_post_comments', 'action_untrash_post_comments', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /sync/class.jetpack-sync-module-comments.php
- add_action( 'untrash_post_comments', $callable );