apply_filters( "rest_{$this->post_type}_item_schema", array $schema )

Filters the post’s schema.


Description

The dynamic portion of the filter, $this->post_type, refers to the post type slug for the controller.

Possible hook names include:

  • rest_post_item_schema
  • rest_page_item_schema
  • rest_attachment_item_schema

Top ↑

Parameters

$schema array
Item schema data.

Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php. View all references

$schema = apply_filters( "rest_{$this->post_type}_item_schema", $schema );


Top ↑

Changelog

Changelog
Version Description
5.4.0 Introduced.

Top ↑

User Contributed Notes

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