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.
This hook occurs 3 times in this file.
Line | Code |
---|---|
291 | * @param array $meta Any additional meta from the 'add_signup_meta' filter in validate_blog_signup() |
292 | */ |
293 | function confirm_another_blog_signup( $domain, $path, $blog_title, $user_name, $user_email = '', $meta = array() ) { |
294 | ?> |
295 | <h2><?php printf( __( 'The site %s is yours.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2> |
296 | <p> |
297 | <?php printf( __( '<a href="http://%1$s">http://%2$s</a> is your new site. <a href="%3$s">Log in</a> as “%4$s” using your existing password.' ), $domain.$path, $domain.$path, "http://" . $domain.$path . "wp-login.php", $user_name ) ?> |
298 | </p> |
299 | <?php |
300 | do_action( 'signup_finished' ); |
301 | } |
302 |
|
303 | /** |
304 | * Setup the new user signup process |
305 | * |
306 | * @since MU |
307 | * |
308 | * @uses apply_filters() filter $filtered_results |
309 | * @uses show_user_form() to display the user registration form |
Line | Code |
391 | * @param string $user_email The user's email address |
392 | */ |
393 | function confirm_user_signup($user_name, $user_email) { |
394 | ?> |
395 | <h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2> |
396 | <p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p> |
397 | <p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.' ), $user_email ); ?></p> |
398 | <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p> |
399 | <?php |
400 | do_action( 'signup_finished' ); |
401 | } |
402 |
|
403 | /** |
404 | * Setup the new site signup |
405 | * |
406 | * @since MU |
407 | * |
408 | * @uses apply_filters() to filter $filtered_results |
409 | * @uses show_blog_form() to display the blog signup form |
Line | Code |
501 | <p> |
502 | <?php _e( 'If you haven’t received your email yet, there are a number of things you can do:' ) ?> |
503 | <ul id="noemail-tips"> |
504 | <li><p><strong><?php _e( 'Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.' ) ?></strong></p></li> |
505 | <li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li> |
506 | <li><?php printf( __( 'Have you entered your email correctly? You have entered %s, if it’s incorrect, you will not receive your email.' ), $user_email ) ?></li> |
507 | </ul> |
508 | </p> |
509 | <?php |
510 | do_action( 'signup_finished' ); |
511 | } |
512 |
|
513 | // Main |
514 | $active_signup = get_site_option( 'registration' ); |
515 | if ( !$active_signup ) |
516 | $active_signup = 'all'; |
517 |
|
518 | $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return "all", "none", "blog" or "user" |
519 |
|