Docs: Add a `@since` entry for the `post_password_required` filter introduced in [38603].

Use a third-person singular verb for the filter description.

See #38056.

git-svn-id: https://develop.svn.wordpress.org/trunk@38604 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-09-14 21:36:18 +00:00
parent 5d1ca8e2d0
commit 94c9edd8d4
1 changed files with 4 additions and 2 deletions

View File

@ -799,11 +799,13 @@ function post_password_required( $post = null ) {
}
/**
* Filter whether a post requires the user to supply a password.
* Filters whether a post requires the user to supply a password.
*
* @since 4.7.0
*
* @param bool $required Whether the user needs to supply a password. True if password has not been
* provided or is incorrect, false if password has been supplied or is not required.
* @param WP_Post $post Post data.
* @param WP_Post $post Post data.
*/
return apply_filters( 'post_password_required', $required, $post );
}