private_to_published
Fires when a post's status is transitioned from private to published.
Description
Parameters (1)
- 0. $post_id (int)
- The post id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'private_to_published', $post_id );
- The following example is for adding a hook callback.
- // define the private_to_published callback
- function action_private_to_published( $post_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'private_to_published', 'action_private_to_published', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'private_to_published', 'action_private_to_published', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/post.php
- do_action('private_to_published', $post->ID);