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 |
---|---|
759 | * |
760 | * @param array $meta Signup meta data. Default empty array. |
761 | * @param string $domain The requested domain. |
762 | * @param string $path The requested path. |
763 | * @param string $title The requested site title. |
764 | * @param string $user The user's requested login name. |
765 | * @param string $user_email The user's email address. |
766 | * @param string $key The user's activation key. |
767 | */ |
768 | $meta = apply_filters( 'signup_site_meta', $meta, $domain, $path, $title, $user, $user_email, $key ); |
769 |
|
770 | $wpdb->insert( |
771 | $wpdb->signups, |
772 | array( |
773 | 'domain' => $domain, |
774 | 'path' => $path, |
775 | 'title' => $title, |
776 | 'user_login' => $user, |
777 | 'user_email' => $user_email, |