mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-09 11:40:04 +00:00
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:
@@ -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 );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user