Definition:
function confirm_user_signup($user_name, $user_email) {}
Parameters
- $user_name
- $user_email
Defined actions
- signup_finished
do_action( 'signup_finished' );
Source code
function confirm_user_signup($user_name, $user_email) {
?>
<h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2>
<p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p>
<p><?php printf(__( 'Check your inbox at <strong>%1$s</strong> and click the link given.' ), $user_email) ?></p>
<p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
<?php
do_action( 'signup_finished' );
}
717

February 11, 2011 


No comments yet... Be the first to leave a reply!