Skip to content

Instantly share code, notes, and snippets.

View andhiermawan's full-sized avatar

Ermawan andhiermawan

View GitHub Profile
@andhiermawan
andhiermawan / minify_html.php
Last active February 7, 2018 03:59
Minify HTML Wordpress: Include in wp_head!
// Minify HTML on The Fly Wordpress
// http://ermawan.com/php-minify-html-on-the-fly
function minify_html($buffer) {
$search = array(
'/\>[^\S ]+/s', // strip whitespaces after tags, except space
'/[^\S ]+\</s', // strip whitespaces before tags, except space
'/(\s)+/s' // shorten multiple whitespace sequences
);
$replace = array(
'>',
// FUNCTION TO CREATE REDIRECT!
function redirect($to, $type=301){
if ($type == 301) header("HTTP/1.1 301 Moved Permanently");
header("Location: $to");
exit();
}