WordPress免插件压缩网页代码

Author: 陌小雨Date: 2014-10-17View: 67

今天陌小雨给大家分享一个免插件wordpress压缩网页代码的方法,这也是加快网页加载速度的一个技巧,你值得拥有
代码:

//压缩html代码
function wp_compress_html(){
    function wp_compress_html_main ($buffer){
        $initial=strlen($buffer);
        $buffer=explode("<!--wp-compress-html-->", $buffer);
        $count=count ($buffer);
        for ($i = 0; $i <= $count; $i++){
            if (stristr($buffer[$i], '<!--wp-compress-html no compression-->')) {
                $buffer[$i]=(str_replace("<!--wp-compress-html no compression-->", " ", $buffer[$i]));
            } else {
                $buffer[$i]=(str_replace("\t", " ", $buffer[$i]));
                $buffer[$i]=(str_replace("\n\n", "\n", $buffer[$i]));
                $buffer[$i]=(str_replace("\n", "", $buffer[$i]));
                $buffer[$i]=(str_replace("\r", "", $buffer[$i]));
                while (stristr($buffer[$i], '  ')) {
                    $buffer[$i]=(str_replace("  ", " ", $buffer[$i]));
                }
            }
            $buffer_out.=$buffer[$i];
        }
        $final=strlen($buffer_out);  
        $savings=($initial-$final)/$initial*100;  
        $savings=round($savings, 2);  
        $buffer_out.="\n<!--压缩前的大小: $initial bytes; 压缩后的大小: $final bytes; 节约:$savings% -->";  
    return $buffer_out;
}
ob_start("wp_compress_html_main");
}
add_action('get_header', 'wp_compress_html');

将上述代码放到functions.php中>之前就可以了。

有时候我们会为网站添加一些特效,有些呢就会直接加到footer.php中,有些js被压缩了就会出错,或者没有效果,这个时候,我们只需要用下面代码将js代码包裹起来就好了。

<!--wp-compress-html--><!--wp-compress-html no compression-->
如果你加的js没有效果,就放到这里,这样前台就不会压缩他们了啦
<!--wp-compress-html no compression--><!--wp-compress-html-->