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

Fixes #35590.
Built from https://develop.svn.wordpress.org/trunk@38749


git-svn-id: http://core.svn.wordpress.org/trunk@38692 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2016-10-07 19:24:28 +00:00
parent fc79800fc5
commit ae2ff33c91
2 changed files with 6 additions and 6 deletions

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
*

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-alpha-38748';
$wp_version = '4.7-alpha-38749';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.