Automattic\WooCommerce\EmailEditor\Engine\Renderer\ContentRenderer
Process_Manager::postprocess
Method to postprocess the content
Method of the class: Process_Manager{}
No Hooks.
Returns
String.
Usage
$Process_Manager = new Process_Manager(); $Process_Manager->postprocess( $html ): string;
- $html(string) (required)
- HTML content.
Process_Manager::postprocess() Process Manager::postprocess code WC 10.7.0
public function postprocess( string $html ): string {
foreach ( $this->postprocessors as $postprocessor ) {
$html = $postprocessor->postprocess( $html );
}
return $html;
}