WP_Upgrader_Skin::header() WordPress Method
The WP_Upgrader_Skin::header() method is used to display the header for the WordPress upgrader. This includes the WordPress logo and the message "Upgrading WordPress".
WP_Upgrader_Skin::header() #
Source
File: wp-admin/includes/class-wp-upgrader-skin.php
public function header() {
if ( $this->done_header ) {
return;
}
$this->done_header = true;
echo '<div class="wrap">';
echo '<h1>' . $this->options['title'] . '</h1>';
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |