confirm_blog_signup [ WordPress Function ]
confirm_blog_signup ( $domain, $path, $blog_title, $user_name = '', $user_email = '', $meta )
| Defined at: |
|
Benzer Fonksiyonlar: confirm_another_blog_signup, confirm_user_signup, validate_blog_signup, validate_another_blog_signup, wpmu_validate_blog_signup
No description yet.
Source
<?php
function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user_email = '', $meta) {
?>
<h2><?php printf( __( 'Congratulations! Your new site, %s, is almost ready.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
<p><?php _e( 'But, before you can start using your site, <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 site within two days, you will have to sign up again.' ); ?></p>
<h2><?php _e( 'Still waiting for your email?' ); ?></h2>
<p>
<?php _e( 'If you haven’t received your email yet, there are a number of things you can do:' ) ?>
<ul id="noemail-tips">
<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>
<li><p><?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?></p></li>
<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>
</ul>
</p>
<?php
do_action( 'signup_finished' );
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- confirm_blog_signup - WordPress.org
Description. Description | Includes | Functions. Includes. Description | Includes | Functions. require ('./wp-blog-header.php') (line 8). require (dirname(__FILE__).
phpdoc.wordpress.org - wp-signup.php - PHP Cross Reference of WordPress Source - Yoast
Jun 1, 2011 ... validate_user_signup() confirm_user_signup() signup_blog() validate_blog_signup() confirm_blog_signup(). Functions. Functions that are not ...
xref.yoast.com - /wp-signup.php source - PHP Cross Reference (PHPXRef) of ...
Jun 1, 2011... 357 return true; 358 } 359 360 function confirm_blog_signup($domain, $path, $ blog_title, $user_name = '', $user_email = '', $meta) { 361 ?> ...
xref.yoast.com - PHPXRef 0.7 : WordPress (Trunk) : /wp-signup.php source
... $meta); 347 confirm_blog_signup($domain, $path, $blog_title, $user_name, ... 348 return true; 349 } 350 351 function confirm_blog_signup($domain, $path, ...
lab.yukei.net