WC_Admin::buffer()publicWC 1.0

Output buffering allows admin screens to make redirects later on.

Method of the class: WC_Admin{}

No Hooks.

Return

null. Nothing.

Usage

$WC_Admin = new WC_Admin();
$WC_Admin->buffer();

WC_Admin::buffer() code WC 7.5.1

public function buffer() {
	ob_start();
}