MailPoet\EmailEditor\Engine\Renderer\ContentRenderer

Process_Manager::postprocess()publicWC 1.0

Method to postprocess the content

Method of the class: Process_Manager{}

No Hooks.

Return

String.

Usage

$Process_Manager = new Process_Manager();
$Process_Manager->postprocess( $html ): string;
$html(string) (required)
HTML content.

Process_Manager::postprocess() code WC 9.8.1

public function postprocess( string $html ): string {
	foreach ( $this->postprocessors as $postprocessor ) {
		$html = $postprocessor->postprocess( $html );
	}
	return $html;
}