Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: signup_finished

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 3 times in this file.

Line Code
567           );
568           ?>
569      </p>
570      <?php
571      /**
572       * Fires when the site or user sign-up process is complete.
573       *
574       * @since 3.0.0
575       */
576      do_action( 'signup_finished' );
577 }
578
579 /**
580  * Shows a form for a visitor to sign up for a new user account.
581  *
582  * @since MU (3.0.0)
583  *
584  * @global string $active_signup String that returns registration type. The value can be
585  *                               'all', 'none', 'blog', or 'user'.
 
Line Code
712      <p>
713      <?php
714      /* translators: %s: The user email address. */
715      printf( __( 'Check your inbox at %s and click on the given link.' ), '<strong>' . $user_email . '</strong>' );
716      ?>
717      </p>
718      <p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
719      <?php
720      /** This action is documented in wp-signup.php */
721      do_action( 'signup_finished' );
722 }
723
724 /**
725  * Shows a form for a user or visitor to sign up for a new site.
726  *
727  * @since MU (3.0.0)
728  *
729  * @param string          $user_name  The username.
730  * @param string          $user_email The user's email address.
 
Line Code
882           <li>
883           <?php
884                /* translators: %s: Email address. */
885                printf( __( 'Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email.' ), $user_email );
886           ?>
887           </li>
888      </ul>
889      <?php
890      /** This action is documented in wp-signup.php */
891      do_action( 'signup_finished' );
892 }
893
894 /**
895  * Retrieves languages available during the site/user sign-up process.
896  *
897  * @since 4.4.0
898  *
899  * @see get_available_languages()
900  *