WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1855 | * |
1856 | * The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug. |
1857 | * |
1858 | * @since 4.7.0 |
1859 | * |
1860 | * @param WP_REST_Response $response The response object. |
1861 | * @param WP_Post $post Post object. |
1862 | * @param WP_REST_Request $request Request object. |
1863 | */ |
1864 | return apply_filters( "rest_prepare_{$this->post_type}", $response, $post, $request ); |
1865 | } |
1866 |
|
1867 | /** |
1868 | * Overwrites the default protected title format. |
1869 | * |
1870 | * By default, WordPress will show password protected posts with a title of |
1871 | * "Protected: %s", as the REST API communicates the protected status of a post |
1872 | * in a machine readable format, we remove the "Protected: " prefix. |
1873 | * |