confirm_user_signup [ WordPress Function ]
confirm_user_signup ( $user_name, $user_email )
| Defined at: |
|
Benzer Fonksiyonlar: confirm_blog_signup, confirm_another_blog_signup, confirm_delete_users, validate_user_signup, count_users
No description yet.
Source
<?php
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>%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' );
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Docs for page wp-signup.php
void confirm_user_signup ( $user_name, $user_email). $user_name; $ user_email. do_signup_header (line 15). void do_signup_header (). show_blog_form ...
phpdoc.wordpress.org - wp-signup.php - PHP Cross Reference of WordPress Source - Yoast
Jun 1, 2011 ... validate_another_blog_signup() confirm_another_blog_signup() signup_user() validate_user_signup() confirm_user_signup() signup_blog() ...
xref.yoast.com - validate_user_signup (WordPress Function) - WPSeek.com
wpmu_signup_user($user_name, $user_email, apply_filters( 'add_signup_meta', array() ) ); confirm_user_signup($user_name, $user_email); return true; } ?> ...
wpseek.com - How to moderate signups – WordPress "Must-Use" Tutorials
Oct 5, 2007 ... Open up wp-signup and find the function confirm_user_signup (line 292). All we are going to change is the text of the messages. I changed ...
wpmututorials.com