MailPoet\EmailEditor\Engine\Renderer\ContentRenderer
Process_Manager::postprocess()
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() 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; }