返回介绍

confirm_blog_signup()

发布于 2017-09-10 21:54:15 字数 3475 浏览 1147 评论 0 收藏 0

confirm_blog_signup( string $domain,  string $path,  string $blog_title,  string $user_name = '',  string $user_email = '',  array $meta = array() )

New site signup confirmation


description


参数

$domain

(string) (Required) The domain URL

$path

(string) (Required) The site root path

$blog_title

(string) (Required) The new site title

$user_name

(string) (Optional) The user's username

Default value: ''

$user_email

(string) (Optional) The user's email address

Default value: ''

$meta

(array) (Optional) Any additional meta from the 'add_signup_meta' filter in validate_blog_signup()

Default value: array()


源代码

File: wp-signup.php

function confirm_blog_signup( $domain, $path, $blog_title, $user_name = '', $user_email = '', $meta = array() ) {
	?>
	<h2><?php /* translators: %s: site address */
	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 /* translators: %s: email address */
	printf( __( 'Check your inbox at %s and click the link given.' ), '<strong>' . $user_email . '</strong>' ); ?></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
				/* translators: %s: email address */
				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
	/** This action is documented in wp-signup.php */
	do_action( 'signup_finished' );
}

更新日志

Versiondescription
MUIntroduced.

相关函数

Uses

  • wp-signup.php: signup_finished
  • wp-includes/l10n.php: __()
  • wp-includes/l10n.php: _e()
  • wp-includes/plugin.php: do_action()

Used By

  • wp-signup.php: validate_blog_signup()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文