install_theme_information

函数
install_theme_information ( No parameters )

install_theme_information: 这个函数用来检索一个给定主题的主题信息。它把主题的名称作为参数,并返回一个具有名称、版本、描述和屏幕截图等属性的对象。

在对话框表单中显示主题信息。

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

常见问题

FAQs
查看更多 >