Modify optimized HTML output

You can use " flying_press_optimization:after" filter to modify the final HTML which is optimized by FlyingPress. This modified HTML will be saved cache and served to visitors.

add_filter('flying_press_optimization:after', function($html){
   // Modify $html here
   return $html;
});
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.