xmlrpc_publish_post
Fires when _publish_post_hook() is called during an XML-RPC request.
Description
Parameters (1)
- 0. $post_id (int)
- The post id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'xmlrpc_publish_post', $post_id );
- The following example is for adding a hook callback.
- // define the xmlrpc_publish_post callback
- function action_xmlrpc_publish_post( $post_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'xmlrpc_publish_post', 'action_xmlrpc_publish_post', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'xmlrpc_publish_post', 'action_xmlrpc_publish_post', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/post.php
- do_action( 'xmlrpc_publish_post', $post_id );