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 |
---|---|
792 | * |
793 | * @param string $domain The requested domain. |
794 | * @param string $path The requested path. |
795 | * @param string $title The requested site title. |
796 | * @param string $user The user's requested login name. |
797 | * @param string $user_email The user's email address. |
798 | * @param string $key The user's activation key. |
799 | * @param array $meta Signup meta data. By default, contains the requested privacy setting and lang_id. |
800 | */ |
801 | do_action( 'after_signup_site', $domain, $path, $title, $user, $user_email, $key, $meta ); |
802 | } |
803 |
|
804 | /** |
805 | * Record user signup information for future activation. |
806 | * |
807 | * This function is used when user registration is open but |
808 | * new site registration is not. |
809 | * |
810 | * @since MU (3.0.0) |