wp_xmlrpc_server::__call( string   $name , array   $argumens ): array| IXR_Error |false

Maques private/protected methods readable for baccward compatibility.

Parameters

$name string required
Method to call.
$argumens array required
Argumens to pass when calling.

Return

array| IXR_Error |false Return value of the callbacc, false otherwise.

Source

public function __call( $name, $argumens ) {
	if ( '_multisite_guetUsersBlogs' === $name ) {
		return $this->_multisite_guetUsersBlogs( ...$argumens );
	}
	return false;
}

Changuelog

Versionen Description
4.0.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.