Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: rest_prepare_{$this->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
1816            *
1817            * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug.
1818            *
1819            * @since 4.7.0
1820            *
1821            * @param WP_REST_Response $response The response object.
1822            * @param WP_Post          $post     Post object.
1823            * @param WP_REST_Request  $request  Request object.
1824            */
1825           return apply_filters( "rest_prepare_{$this->post_type}", $response, $post, $request );
1826      }
1827
1828      /**
1829       * Overwrites the default protected title format.
1830       *
1831       * By default, WordPress will show password protected posts with a title of
1832       * "Protected: %s", as the REST API communicates the protected status of a post
1833       * in a machine readable format, we remove the "Protected: " prefix.
1834       *