wpseek.com
WordPress开发者和主题制作者的搜索引擎



confirm_another_blog_signup › WordPress Function

Since
已弃用n/a
confirm_another_blog_signup ( $domain, $path, $blog_title, $user_name, $user_email = '', $meta = array(), $blog_id = 0 )
参数: (7)
  • (string) $domain The domain URL.
    Required: Yes
  • (string) $path The site root path.
    Required: Yes
  • (string) $blog_title The site title.
    Required: Yes
  • (string) $user_name The username.
    Required: Yes
  • (string) $user_email The user's email address.
    Required: No
    默认: (empty)
  • (array) $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup().
    Required: No
    默认: array()
  • (int) $blog_id The site ID.
    Required: No
    默认:
定义在:
文档:
Change Log:
  • 4.4.0

Shows a message confirming that the new site has been created.



源码

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 title. */
		printf( __( 'The site %s is yours.' ), $site );
	?>
	</h2>
	<p>
		<?php
		printf(
			/* translators: 1: Link to new site, 2: Login URL, 3: Username. */
			__( '%1$s is your new site. <a href="%2$s">Log in</a> as &#8220;%3$s&#8221; using your existing password.' ),
			sprintf(
				'<a href="%s">%s</a>',
				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' );
}