WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 609 | * @type string $message The content of the email. |
| 610 | * @type string $headers Headers. |
| 611 | * } |
| 612 | * @param WP_User $user The site administrator user object. |
| 613 | * @param string $blog_title The site title. |
| 614 | * @param string $blog_url The site URL. |
| 615 | * @param string $password The site administrator's password. Note that a placeholder message |
| 616 | * is usually passed instead of the user's actual password. |
| 617 | */ |
| 618 | $installed_email = apply_filters( 'wp_installed_email', $installed_email, $user, $blog_title, $blog_url, $password ); |
| 619 | |
| 620 | wp_mail( |
| 621 | $installed_email['to'], |
| 622 | $installed_email['subject'], |
| 623 | $installed_email['message'], |
| 624 | $installed_email['headers'] |
| 625 | ); |
| 626 | } |
| 627 | endif; |