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 |
---|---|
596 | * @type string $message The content of the email. |
597 | * @type string $headers Headers. |
598 | * } |
599 | * @param WP_User $user The site administrator user object. |
600 | * @param string $blog_title The site title. |
601 | * @param string $blog_url The site URL. |
602 | * @param string $password The site administrator's password. Note that a placeholder message |
603 | * is usually passed instead of the user's actual password. |
604 | */ |
605 | $installed_email = apply_filters( 'wp_installed_email', $installed_email, $user, $blog_title, $blog_url, $password ); |
606 |
|
607 | wp_mail( |
608 | $installed_email['to'], |
609 | $installed_email['subject'], |
610 | $installed_email['message'], |
611 | $installed_email['headers'] |
612 | ); |
613 | } |
614 | endif; |