# confirm_blog_signup()

URL: https://chugunov.pro/api-wordpress/functions/confirm_blog_signup/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: функция.
Появился в версии: MU (3.0.0).

## Сигнатура

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

## Описание

Показывает сообщение, подтверждающее, что новый сайт зарегистрирован и ожидает активации.

## Параметры

- `$domain` `string` — обязательный. Домен или поддомен сайта.
- `$path` `string` — обязательный. Путь сайта.
- `$blog_title` `string` — обязательный. Заголовок нового сайта.
- `$user_name` `string` — необязательный, по умолчанию `''`. Имя пользователя.
- `$user_email` `string` — необязательный, по умолчанию `''`. Адрес электронной почты пользователя.
- `$meta` `array` — необязательный, по умолчанию `array()`. Любые дополнительные метаданные из фильтра 'add_signup_meta' в validate_blog_signup().

## Исходный код

Файл: `wp-signup.php:863`

```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: 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' );
}
```

## История изменений

- MU (3.0.0) — Introduced.

## Связанные

Использует: [`__`](https://chugunov.pro/api-wordpress/functions/__/), [`_e`](https://chugunov.pro/api-wordpress/functions/_e/), [`do_action`](https://chugunov.pro/api-wordpress/functions/do_action/).
Используется в: [`validate_blog_signup`](https://chugunov.pro/api-wordpress/functions/validate_blog_signup/).

Оригинал в официальной документации: https://developer.wordpress.org/reference/functions/confirm_blog_signup/
