xmlrpc_call_success_mw_newmediaobject
Fires after a new attachment has been added via the XML-RPC MovableType API.
Description
Parameters (2)
- 0. $id (int)
- ID of the new attachment.
- 1. $args (array)
- An array of arguments to add the attachment.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'xmlrpc_call_success_mw_newmediaobject', $id, $args );
- The following example is for adding a hook callback.
- // define the xmlrpc_call_success_mw_newmediaobject callback
- function action_xmlrpc_call_success_mw_newmediaobject( $id, $args ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'xmlrpc_call_success_mw_newmediaobject', 'action_xmlrpc_call_success_mw_newmediaobject', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'xmlrpc_call_success_mw_newmediaobject', 'action_xmlrpc_call_success_mw_newmediaobject', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-xmlrpc-server.php
- do_action( 'xmlrpc_call_success_mw_newMediaObject', $id, $args );