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 |
---|---|
650 | * @type string $message The content of the email. |
651 | * @type string $headers Headers. |
652 | * } |
653 | * @param WP_User $user The site administrator user object. |
654 | * @param string $blog_title The site title. |
655 | * @param string $blog_url The site URL. |
656 | * @param string $password The site administrator's password. Note that a placeholder message |
657 | * is usually passed instead of the user's actual password. |
658 | */ |
659 | $installed_email = apply_filters( 'wp_installed_email', $installed_email, $user, $blog_title, $blog_url, $password ); |
660 |
|
661 | wp_mail( |
662 | $installed_email['to'], |
663 | $installed_email['subject'], |
664 | $installed_email['message'], |
665 | $installed_email['headers'] |
666 | ); |
667 | } |
668 | endif; |