wp_xmlrpc_server::sayHello() WordPress Method
The wp_xmlrpc_server::sayHello() method is used to say hello to a user on a Wordpress site. This method takes two parameters: the first is the user ID of the user to say hello to, and the second is a message to send to the user.
wp_xmlrpc_server::sayHello() #
Test XMLRPC API by saying, “Hello!” to client.
Return
(string) Hello string response.
Source
File: wp-includes/class-wp-xmlrpc-server.php
public function sayHello() { return 'Hello!'; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
1.5.0 | Introduced. |