前端代码直接影响百度搜索的效率。如何有效压缩WordPress主题前端代码提高网站加速?让我们为大家挖掘并分享一段代码。这种前端代码压缩方法可以有效优化前端访问,但需要注意的是,对于某些主题,会对前端调用动态脚本产生负面影响,即可能导致功能不可用或出现错误提示。
今天,最优站。com将与大家分享一种通过压缩WordPress网站来优化和加速的方法,这种方法是用纯代码实现的,不需要安装任何插件。
网站插件安装越多,负载越大,访问速度自然快不起来,因此我们的口号是“能不装,就不装”
将以下代码放到网站当前使用主题根目录下的functions.php文件即可
-
//压缩 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 中>之前就可以了。
另外对于某些JS文件,压缩容易出问题的
<!--wp-compress-html--><!--wp-compress-html no compression-->
如果不希望被压缩的代码填写到这个里
<!--wp-compress-html no compression--><!--wp-compress-html-->
除了这种代码压缩以外,还可以试试服务器端的nginx压缩。