WordPress免插件进行网页代码压缩优化网站速度

教程

主题 全局配置文件 中,在functions.php文件中加入以下代码:
有些主题会是在functions-theme.php文件中:

<span class="hljs-comment">/*
WordPress免插件网页代码压缩
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">wp_compress_html</span><span class="hljs-params">()</span></span>{
    <span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">wp_compress_html_main</span> <span class="hljs-params">($buffer)</span></span>{
        $initial=strlen($buffer);
        $buffer=explode(<span class="hljs-string">"<!--wp-compress-html-->"</span>, $buffer);
        $count=count ($buffer);
        <span class="hljs-keyword">for</span> ($i = <span class="hljs-number">0</span>; $i <= $count; $i++){
            <span class="hljs-keyword">if</span> (stristr($buffer[$i], <span class="hljs-string">'<!--wp-compress-html no compression-->'</span>)) {
                $buffer[$i]=(str_replace(<span class="hljs-string">"<!--wp-compress-html no compression-->"</span>, <span class="hljs-string">" "</span>, $buffer[$i]));
            } <span class="hljs-keyword">else</span> {
                $buffer[$i]=(str_replace(<span class="hljs-string">"\t"</span>, <span class="hljs-string">" "</span>, $buffer[$i]));
                $buffer[$i]=(str_replace(<span class="hljs-string">"\n\n"</span>, <span class="hljs-string">"\n"</span>, $buffer[$i]));
                $buffer[$i]=(str_replace(<span class="hljs-string">"\n"</span>, <span class="hljs-string">""</span>, $buffer[$i]));
                $buffer[$i]=(str_replace(<span class="hljs-string">"\r"</span>, <span class="hljs-string">""</span>, $buffer[$i]));
                <span class="hljs-keyword">while</span> (stristr($buffer[$i], <span class="hljs-string">'  '</span>)) {
                    $buffer[$i]=(str_replace(<span class="hljs-string">"  "</span>, <span class="hljs-string">" "</span>, $buffer[$i]));
                }
            }
            $buffer_out.=$buffer[$i];
        }
        $final=strlen($buffer_out);   
        $savings=($initial-$final)/$initial*<span class="hljs-number">100</span>;   
        $savings=round($savings, <span class="hljs-number">2</span>);   
    <span class="hljs-keyword">return</span> $buffer_out;
}
ob_start(<span class="hljs-string">"wp_compress_html_main"</span>);
}
add_action(<span class="hljs-string">'get_header'</span>, <span class="hljs-string">'wp_compress_html'</span>);

然后我们刷新网页就OK了。那么如果我们要一些地方不要压缩,该如何做呢?

我们可以按照这个格式:

<span class="hljs-comment"><!--wp-compress-html--></span><span class="hljs-comment"><!--wp-compress-html no compression--></span>

不想压缩的地方

<span class="hljs-comment"><!--wp-compress-html no compression--></span><span class="hljs-comment"><!--wp-compress-html--></span>
WordPress免插件进行网页代码压缩优化网站速度-老六资源网
温馨提示:本文最后更新于2025-03-19 20:50:46,某些文章具有时效性,若有错误或已失效,请在下方留言或联系官方Q群
© 版权声明
THE END
喜欢就支持一下吧
点赞15 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容