xmlrpc_call_success_mw_newMediaObject action-hookWP 3.4.0

Fires after a new attachment has been added via the XML-RPC MovableType API.

Usage

add_action( 'xmlrpc_call_success_mw_newMediaObject', 'wp_kama_xmlrpc_call_success_mw_newMediaObject_action', 10, 2 );

/**
 * Function for `xmlrpc_call_success_mw_newMediaObject` action-hook.
 * 
 * @param int   $id   ID of the new attachment.
 * @param array $args An array of arguments to add the attachment.
 *
 * @return void
 */
function wp_kama_xmlrpc_call_success_mw_newMediaObject_action( $id, $args ){

	// action...
}
$id(int)
ID of the new attachment.
$args(array)
An array of arguments to add the attachment.

Changelog

Since 3.4.0 Introduced.

Where the hook is called

wp_xmlrpc_server::mw_newMediaObject()
xmlrpc_call_success_mw_newMediaObject
wp-includes/class-wp-xmlrpc-server.php 6469
do_action( 'xmlrpc_call_success_mw_newMediaObject', $id, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase

Where the hook is used in WordPress

Usage not found.