Güzel paylaşım olmuş eline sağlık ayrıca wordpress functions.php dosyanız içinde bunu kullanabilirsiniz

function compressHTML($buffer) {
    $buffer = preg_replace('/<!--.*?-->|\t|(?:\r?\n[ \t]*)+/s', '', $buffer);
    $buffer = preg_replace('/>\s+</', '><', $buffer);
    $buffer = preg_replace('/\s{2,}/', ' ', $buffer);
    return $buffer;
}

function start_html_compression() {
    ob_start('compressHTML');
}

function end_html_compression() {
    ob_end_flush();
}

add_action('wp_loaded', 'start_html_compression');
add_action('shutdown', 'end_html_compression');