WP_Ability::get_output_schemapublicWP 6.9.0

Retrieves the output schema for the ability.

Method of the class: WP_Ability{}

No Hooks.

Returns

Array. mixed> The output schema for the ability.

Usage

$WP_Ability = new WP_Ability();
$WP_Ability->get_output_schema(): array;

Changelog

Since 6.9.0 Introduced.

WP_Ability::get_output_schema() code WP 6.9

public function get_output_schema(): array {
	return $this->output_schema;
}