Automatic_Upgrader_Skin::footer()publicWP 3.7.0

Retrieves the buffered content, deletes the buffer, and processes the output.

Method of the class: Automatic_Upgrader_Skin{}

No Hooks.

Return

null. Nothing (null).

Usage

$Automatic_Upgrader_Skin = new Automatic_Upgrader_Skin();
$Automatic_Upgrader_Skin->footer();

Changelog

Since 3.7.0 Introduced.

Automatic_Upgrader_Skin::footer() code WP 6.5.2

public function footer() {
	$output = ob_get_clean();
	if ( ! empty( $output ) ) {
		$this->feedback( $output );
	}
}