返回介绍

confirm_another_blog_signup()

发布于 2017-09-10 21:54:01 字数 3357 浏览 1034 评论 0 收藏 0

confirm_another_blog_signup( string $domain,  string $path,  string $blog_title,  string $user_name,  string $user_email = '',  array $meta = array(),  int $blog_id )

Confirm a new site signup.


description


参数

$domain

(string) (Required) The domain URL.

$path

(string) (Required) The site root path.

$blog_title

(string) (Required) The site title.

$user_name

(string) (Required) The username.

$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()

$blog_id

(int) (Required) The site ID.


源代码

File: wp-signup.php

function confirm_another_blog_signup( $domain, $path, $blog_title, $user_name, $user_email = '', $meta = array(), $blog_id = 0 ) {

	if ( $blog_id ) {
		switch_to_blog( $blog_id );
		$home_url  = home_url( '/' );
		$login_url = wp_login_url();
		restore_current_blog();
	} else {
		$home_url  = 'http://' . $domain . $path;
		$login_url = 'http://' . $domain . $path . 'wp-login.php';
	}

	$site = sprintf( '<a href="%1$s">%2$s</a>',
		esc_url( $home_url ),
		$blog_title
	);

	?>
	<h2><?php
		/* translators: %s: site name */
		printf( __( 'The site %s is yours.' ), $site );
	?></h2>
	<p>
		<?php printf(
			/* translators: 1: home URL, 2: site address, 3: login URL, 4: username */
			__( '<a href="%1$s">%2$s</a> is your new site. <a href="%3$s">Log in</a> as “%4$s” using your existing password.' ),
			esc_url( $home_url ),
			untrailingslashit( $domain . $path ),
			esc_url( $login_url ),
			$user_name
		); ?>
	</p>
	<?php
	/**
	 * Fires when the site or user sign-up process is complete.
	 *
	 * @since 3.0.0
	 */
	do_action( 'signup_finished' );
}

更新日志

Versiondescription
MUMU
4.4.0Introduced.

相关函数

Uses

  • wp-signup.php: signup_finished
  • wp-includes/l10n.php: __()
  • wp-includes/formatting.php: esc_url()
  • wp-includes/formatting.php: untrailingslashit()
  • wp-includes/general-template.php: wp_login_url()
  • wp-includes/link-template.php: home_url()
  • wp-includes/plugin.php: do_action()
  • wp-includes/ms-blogs.php: switch_to_blog()
  • wp-includes/ms-blogs.php: restore_current_blog()
  • Show 4 more uses Hide more uses

Used By

  • wp-signup.php: validate_another_blog_signup()

User Contributed Notes

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

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

发布评论

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