install_theme_information() WordPress Function
The install_theme_information() function is used to install theme information in the WordPress database. This function is used by the WordPress Theme Installer to store theme information in the database.
install_theme_information() #
Displays theme information in dialog box form.
Source
File: wp-admin/includes/theme-install.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;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 2.8.0 | Introduced. |