Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_prepare_post_type

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
260            *
261            * Allows modification of the post type data right before it is returned.
262            *
263            * @since 4.7.0
264            *
265            * @param WP_REST_Response $response  The response object.
266            * @param WP_Post_Type     $post_type The original post type object.
267            * @param WP_REST_Request  $request   Request used to generate the response.
268            */
269           return apply_filters( 'rest_prepare_post_type', $response, $post_type, $request );
270      }
271
272      /**
273       * Retrieves the post type's schema, conforming to JSON Schema.
274       *
275       * @since 4.7.0
276       * @since 4.8.0 The `supports` property was added.
277       * @since 5.9.0 The `visibility` and `rest_namespace` properties were added.
278       *