Automatic_Upgrader_Skin::footer() WordPress Method
The Automatic_Upgrader_Skin::footer() method is used to display a footer for the WordPress Automatic Upgrader. This footer includes a link to the WordPress website, a link to the WordPress support forums, and a link to the WordPress Codex.
Automatic_Upgrader_Skin::footer() #
Retrieves the buffered content, deletes the buffer, and processes the output.
Source
File: wp-admin/includes/class-automatic-upgrader-skin.php
public function footer() {
$output = ob_get_clean();
if ( ! empty( $output ) ) {
$this->feedback( $output );
}
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 3.7.0 | Introduced. |