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



install_theme_information › WordPress Function

Since2.8.0
已弃用n/a
install_theme_information ( 没有参数 )
定义在:
文档:

Displays theme information in dialog box form.



源码

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;
}