WP_REST_View_Config_Controller::get_list_layout_schema(): array

In this article

Returns the layout schema for list-type views (ViewList, ViewActivity).

Return

array Schema for a list layout object.

Source

protected function get_list_layout_schema() {
	return array(
		'type'       => 'object',
		'properties' => array(
			'density' => array(
				'type' => 'string',
				'enum' => array( 'compact', 'balanced', 'comfortable' ),
			),
		),
	);
}

Changelog

VersionDescription
7.1.0Introduced.

User Contributed Notes

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