Files
Filename | Hook Type | Line Number | PHP Doc |
---|---|---|---|
wp-admin/includes/upgrade.php | apply_filters | 605 | /** * Filters the contents of the email sent to the site administrator when WordPress is installed. * * @since 5.6.0 * * @param array $installed_email { * Used to build wp_mail(). * * @type string $to The email address of the recipient. * @type string $subject The subject of the email. * @type string $message The content of the email. * @type string $headers Headers. * } * @param WP_User $user The site administrator user object. * @param string $blog_title The site title. * @param string $blog_url The site URL. * @param string $password The site administrator's password. Note that a placeholder message * is usually passed instead of the user's actual password. */ |
Hook Parameters
Parameter Type | Name | Description |
---|---|---|
array | $installed_emai | l { |
WP_User | $user | The site administrator user object. |
string | $blog_title | The site title. |
string | $blog_url | The site URL. |
string | $password | The site administrator's password. Note that a placeholder message |