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.


Top ↑

Source

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

	public function sayHello() {
		return 'Hello!';
	}

Top ↑

Changelog

Changelog
VersionDescription
1.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More