WP_REST_Controller::get_public_item_schema(): array

In this article

Retrieves the item’s schema for display / public consumption purposes.

Return

array Public item schema data.

Source

public function get_public_item_schema() {

	$schema = $this->get_item_schema();

	if ( ! empty( $schema['properties'] ) ) {
		foreach ( $schema['properties'] as &$property ) {
			unset( $property['arg_options'] );
		}
	}

	return $schema;
}

Changelog

VersionDescription
4.7.0Introduced.

User Contributed Notes

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