WP_Upgrader_Skin::header()publicWP 2.8.0

Method of the class: WP_Upgrader_Skin{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Upgrader_Skin = new WP_Upgrader_Skin();
$WP_Upgrader_Skin->header();

Changelog

Since 2.8.0 Introduced.

WP_Upgrader_Skin::header() code WP 6.5.2

public function header() {
	if ( $this->done_header ) {
		return;
	}
	$this->done_header = true;
	echo '<div class="wrap">';
	echo '<h1>' . $this->options['title'] . '</h1>';
}