Docs: Improve formatting of filter docs added in [38689].

Fixes #35590.

git-svn-id: https://develop.svn.wordpress.org/trunk@38749 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2016-10-07 19:23:02 +00:00
parent c138f3616a
commit 70a69ffa93

View File

@ -875,7 +875,7 @@ class WP_REST_Server {
}
/**
* Call a filter before executing any REST API callbacks.
* Filters the response before executing any REST API callbacks.
*
* Allows plugins to perform additional validation after a
* request is initialized and matched to a registered route,
@ -930,18 +930,18 @@ class WP_REST_Server {
}
/**
* Call a filter immediately after executing any REST API
* Filters the response immediately after executing any REST API
* callbacks.
*
* Allows plugins to perform any needed cleanup, for example,
* to undo changes made during `rest_request_before_callbacks`.
* to undo changes made during the {@see 'rest_request_before_callbacks'}
* filter.
*
* Note that this filter will not be called for requests that
* fail to authenticate or match to a registered route.
*
* Note that an endpoint's `permission_callback` can still be
* called after this filter - see the `rest_send_allow_header`
* function.
* called after this filter - see `rest_send_allow_header()`.
*
* @since 4.7.0
*