wp_xmlrpc_server::_getOptions( array $options ): array

In this article

Retrieves blog options value from list.

Parameters

$optionsarrayrequired
Options to retrieve.

Return

array

Source

public function _getOptions( $options ) {
	$data       = array();
	$can_manage = current_user_can( 'manage_options' );
	foreach ( $options as $option ) {
		if ( array_key_exists( $option, $this->blog_options ) ) {
			$data[ $option ] = $this->blog_options[ $option ];
			// Is the value static or dynamic?
			if ( isset( $data[ $option ]['option'] ) ) {
				$data[ $option ]['value'] = get_option( $data[ $option ]['option'] );
				unset( $data[ $option ]['option'] );
			}

			if ( ! $can_manage ) {
				$data[ $option ]['readonly'] = true;
			}
		}
	}

	return $data;
}

Changelog

VersionDescription
2.6.0Introduced.

User Contributed Notes

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