Automatic_Upgrader_Skin::footer()publicWP 3.7.0

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

Метод класса: Automatic_Upgrader_Skin{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

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

Список изменений

С версии 3.7.0 Введена.

Код Automatic_Upgrader_Skin::footer() WP 6.4.3

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