future_<name>
Adds the future post hook action for the post type.
Description
Parameters (3)
- 0. $future_post_hook (string) =>
'_future_post_hook'
- The future post hook.
- 1. $int (int) =>
5
- The int.
- 2. $int (int) =>
2
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'future_{$name}', $future_post_hook, $int, $int );
- The following example is for adding a hook callback.
- // define the future_<name> callback
- function action_future_name( $future_post_hook, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "future_{$name}", 'action_future_name', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "future_{$name}", 'action_future_name', 10, 3 );
Defined (2)
The action is defined in the following location(s).
- /wp-includes/class-wp-post-type.php
- add_action( 'future_' . $this->name, '_future_post_hook', 5, 2 );
- remove_action( 'future_' . $this->name, '_future_post_hook', 5 );