Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. function minify_html(){
  2. ob_start('html_compress');
  3. }
  4.  
  5. function html_compress($buffer){
  6.  
  7. $search = array(
  8. '/n/', // replace end of line by a space
  9. '/>[^S ]+/s', // strip whitespaces after tags, except space
  10. '/[^S ]+</s', // strip whitespaces before tags, except space
  11. '/(s)+/s', // shorten multiple whitespace sequences,
  12. '~<!--//(.*?)-->~s' //html comments
  13. );
  14.  
  15. $replace = array(
  16. ' ',
  17. '>',
  18. '<',
  19. '\1',
  20. ''
  21. );
  22.  
  23. $buffer = preg_replace($search, $replace, $buffer);
  24.  
  25. return $buffer;
  26. }
  27.  
  28. add_action('wp_loaded','minify_html');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement