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 |
|---|---|
| 613 | * @type string $message The content of the email. |
| 614 | * @type string $headers Headers. |
| 615 | * } |
| 616 | * @param WP_User $user The site administrator user object. |
| 617 | * @param string $blog_title The site title. |
| 618 | * @param string $blog_url The site URL. |
| 619 | * @param string $password The site administrator's password. Note that a placeholder message |
| 620 | * is usually passed instead of the user's actual password. |
| 621 | */ |
| 622 | $installed_email = apply_filters( 'wp_installed_email', $installed_email, $user, $blog_title, $blog_url, $password ); |
| 623 | |
| 624 | wp_mail( |
| 625 | $installed_email['to'], |
| 626 | $installed_email['subject'], |
| 627 | $installed_email['message'], |
| 628 | $installed_email['headers'] |
| 629 | ); |
| 630 | } |
| 631 | endif; |