WP_Upgrader_Skin::footer()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->footer();

Changelog

Since 2.8.0 Introduced.

WP_Upgrader_Skin::footer() code WP 6.5.2

public function footer() {
	if ( $this->done_footer ) {
		return;
	}
	$this->done_footer = true;
	echo '</div>';
}