wp_xmlrpc_server::wp_getOptions()publicWP 2.6.0

Retrieves blog options.

Method of the class: wp_xmlrpc_server{}

No Hooks.

Return

Array|IXR_Error.

Usage

$wp_xmlrpc_server = new wp_xmlrpc_server();
$wp_xmlrpc_server->wp_getOptions( $args );
$args(array) (required)

Method arguments. Note: arguments must be ordered as documented.

  • 0(int)
    Blog ID (unused).

  • 1(string)
    Username.

  • 2(string)
    Password.

  • 3(array)
    Optional. Options.

Changelog

Since 2.6.0 Introduced.

wp_xmlrpc_server::wp_getOptions() code WP 6.5.2

public function wp_getOptions( $args ) {
	$this->escape( $args );

	$username = $args[1];
	$password = $args[2];
	$options  = isset( $args[3] ) ? (array) $args[3] : array();

	$user = $this->login( $username, $password );
	if ( ! $user ) {
		return $this->error;
	}

	// If no specific options where asked for, return all of them.
	if ( count( $options ) === 0 ) {
		$options = array_keys( $this->blog_options );
	}

	return $this->_getOptions( $options );
}