do_action( 'xmlrpc_call', string $name, array|string $args, wp_xmlrpc_server $server )

Fires after the XML-RPC user has been authenticated but before the rest of the method logic begins.


Description

All built-in XML-RPC methods use the action xmlrpc_call, with a parameter equal to the method’s name, e.g., wp.getUsersBlogs, wp.newPost, etc.


Parameters

$name

The method name.

$args

The escaped arguments passed to the method.

$server

The XML-RPC server instance.


Source

File: wp-includes/class-wp-xmlrpc-server.php

View on GitHub



Changelog

Changelog
Version Description
5.7.0 Added the $args and $server parameters.
2.5.0 Introduced.