# install_theme_information()

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

Тип: функция.
Появился в версии: 2.8.0.

## Сигнатура

```php
install_theme_information()
```

## Описание

Выводит информацию о теме в виде диалогового окна.

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

Файл: `wp-admin/includes/theme-install.php:255`

```php
function install_theme_information() {
	global $wp_list_table;

	$theme = themes_api( 'theme_information', array( 'slug' => wp_unslash( $_REQUEST['theme'] ) ) );

	if ( is_wp_error( $theme ) ) {
		wp_die( $theme );
	}

	iframe_header( __( 'Theme Installation' ) );
	if ( ! isset( $wp_list_table ) ) {
		$wp_list_table = _get_list_table( 'WP_Theme_Install_List_Table' );
	}
	$wp_list_table->theme_installer_single( $theme );
	iframe_footer();
	exit;
}
```

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

- 2.8.0 — Introduced.

## Связанные

Использует: [`themes_api`](https://chugunov.pro/api-wordpress/functions/themes_api/), [`_get_list_table`](https://chugunov.pro/api-wordpress/functions/_get_list_table/), `WP_List_Table`, [`iframe_header`](https://chugunov.pro/api-wordpress/functions/iframe_header/), [`iframe_footer`](https://chugunov.pro/api-wordpress/functions/iframe_footer/), [`__`](https://chugunov.pro/api-wordpress/functions/__/), [`wp_unslash`](https://chugunov.pro/api-wordpress/functions/wp_unslash/), [`wp_die`](https://chugunov.pro/api-wordpress/functions/wp_die/), [`is_wp_error`](https://chugunov.pro/api-wordpress/functions/is_wp_error/).

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