confirm_blog_signup

The timeline below displays how wordpress function confirm_blog_signup has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.3

/**
 * Shows a message confirming that the new site has been registered and is awaiting activation.
 *
 * @since MU (3.0.0)
 *
 * @param string $domain     The domain or subdomain of the site.
 * @param string $path       The path of the site.
 * @param string $blog_title The title of the new site.
 * @param string $user_name  The user's username.
 * @param string $user_email The user's email address.
 * @param array  $meta       Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup().
 */
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: The user email address. */
    printf(__('Check your inbox at %s and click on the given link.'), '<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 have not received your email yet, there are a number of things you can do:');
    ?></p>
	<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&#8217;s incorrect, you will not receive your email.'), $user_email);
    ?>
		</li>
	</ul>
	<?php 
    /** This action is documented in wp-signup.php */
    do_action('signup_finished');
}

WordPress Version: 6.1

/**
 * Shows a message confirming that the new site has been registered and is awaiting activation.
 *
 * @since MU (3.0.0)
 *
 * @param string $domain     The domain or subdomain of the site.
 * @param string $path       The path of the site.
 * @param string $blog_title The title of the new site.
 * @param string $user_name  The user's username.
 * @param string $user_email The user's email address.
 * @param array  $meta       Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup().
 */
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 have not received your email yet, there are a number of things you can do:');
    ?></p>
	<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&#8217;s incorrect, you will not receive your email.'), $user_email);
    ?>
		</li>
	</ul>
	<?php 
    /** This action is documented in wp-signup.php */
    do_action('signup_finished');
}

WordPress Version: 5.6

/**
 * Shows a message confirming that the new site has been registered and is awaiting activation.
 *
 * @since MU (3.0.0)
 *
 * @param string $domain     The domain or subdomain of the site.
 * @param string $path       The path of the site.
 * @param string $blog_title The title of the new site.
 * @param string $user_name  The user's username.
 * @param string $user_email The user's email address.
 * @param array  $meta       Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup().
 */
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&#8217;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&#8217;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');
}

WordPress Version: 5.5

/**
 * New site signup confirmation
 *
 * @since MU (3.0.0)
 *
 * @param string $domain     The domain URL.
 * @param string $path       The site root path.
 * @param string $blog_title The new site title.
 * @param string $user_name  The user's username.
 * @param string $user_email The user's email address.
 * @param array  $meta       Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup().
 */
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&#8217;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&#8217;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');
}

WordPress Version: 5.3

/**
 * New site signup confirmation
 *
 * @since MU (3.0.0)
 *
 * @param string $domain The domain URL
 * @param string $path The site root path
 * @param string $blog_title The new site title
 * @param string $user_name The user's username
 * @param string $user_email The user's email address
 * @param array $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup()
 */
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&#8217;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&#8217;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');
}

WordPress Version: 5.1

/**
 * New site signup confirmation
 *
 * @since MU (3.0.0)
 *
 * @param string $domain The domain URL
 * @param string $path The site root path
 * @param string $blog_title The new site title
 * @param string $user_name The user's username
 * @param string $user_email The user's email address
 * @param array $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup()
 */
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&#8217;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&#8217;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');
}

WordPress Version: 4.9

/**
 * New site signup confirmation
 *
 * @since MU (3.0.0)
 *
 * @param string $domain The domain URL
 * @param string $path The site root path
 * @param string $blog_title The new site title
 * @param string $user_name The user's username
 * @param string $user_email The user's email address
 * @param array $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup()
 */
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&#8217;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&#8217;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');
}

WordPress Version: 4.6

/**
 * New site signup confirmation
 *
 * @since MU
 *
 * @param string $domain The domain URL
 * @param string $path The site root path
 * @param string $blog_title The new site title
 * @param string $user_name The user's username
 * @param string $user_email The user's email address
 * @param array $meta Any additional meta from the {@see 'add_signup_meta'} filter in validate_blog_signup()
 */
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&#8217;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&#8217;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');
}

WordPress Version: 4.4

/**
 * New site signup confirmation
 *
 * @since MU
 *
 * @param string $domain The domain URL
 * @param string $path The site root path
 * @param string $blog_title The new site title
 * @param string $user_name The user's username
 * @param string $user_email The user's email address
 * @param array $meta Any additional meta from the 'add_signup_meta' filter in validate_blog_signup()
 */
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&#8217;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&#8217;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');
}

WordPress Version: 3.7

/**
 * New site signup confirmation
 *
 * @since MU
 *
 * @param string $domain The domain URL
 * @param string $path The site root path
 * @param string $blog_title The new site title
 * @param string $user_name The user's username
 * @param string $user_email The user's email address
 * @param array $meta Any additional meta from the 'add_signup_meta' filter in validate_blog_signup()
 */
function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user_email = '', $meta = array())
{
    ?>
	<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&#8217;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&#8217;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');
}