publish_future_post
The WordPress Core publish future post hook.
Description
add_action( 'publish_future_post', (string) $check_and_publish_future_post, (int) $int, (int) $int );
Parameters (3)
- 0. $check_and_publish_future_post (string) =>
'check_and_publish_future_post'
- The check and publish future post.
- 1. $int (int) =>
10
- The int.
- 2. $int (int) =>
1
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'publish_future_post', $check_and_publish_future_post, $int, $int );
- The following example is for adding a hook callback.
- // define the publish_future_post callback
- function action_publish_future_post( $check_and_publish_future_post, $int, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'publish_future_post', 'action_publish_future_post', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'publish_future_post', 'action_publish_future_post', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/default-filters.php
- add_action( 'publish_future_post', 'check_and_publish_future_post', 10, 1 );