Docs: Improve the `recovery_mode_email` inline docs.

See #51267, #50768.

git-svn-id: https://develop.svn.wordpress.org/trunk@48962 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jonathan Desrosiers 2020-09-09 15:46:30 +00:00
parent 875acd7b37
commit 506c46593b
1 changed files with 8 additions and 1 deletions

View File

@ -206,7 +206,14 @@ When seeking help with this issue, you may be asked for some of the following in
*
* @since 5.2.0
*
* @param array $email Used to build wp_mail().
* @param array $email {
* Used to build a call to wp_mail().
*
* @type string|array $to Array or comma-separated list of email addresses to send message.
* @type string $subject Email subject
* @type string $message Message contents
* @type string|array $headers Optional. Additional headers.
* }
* @param string $url URL to enter recovery mode.
*/
$email = apply_filters( 'recovery_mode_email', $email, $url );