提升网站访问速度方法智能压缩WordPress代码
很多用户咨询html代码压缩和php代码压缩的功能方法,需要对查看源代码时需要对应的属性id比较麻烦但是减少空…
很多用户咨询html代码压缩和php代码压缩的功能方法,需要对查看源代码时需要对应的属性id比较麻烦但是减少空行和间距的位置对访问速度还有蜘蛛爬行上都是有不可争辩的优势的。今天就分享提升网站访问速度方法智能压缩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(“nn”, “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’);
执行代码后,保藏,然后跳至首页,查看源代码是否添加成功。代码的压缩会产生很多的副作用比如说函数实效或是样式错乱等等,那我们就要针对特别的位置对代码进行不压缩的注释的调整。方法如下
<!–wp-compress-html–><!–wp-compress-html no compression–>
不被代码压缩的部分
<!–wp-compress-html no compression–><!–wp-compress-html–>
1
2
3
<!–wp-compress-html–><!–wp-compress-html no compression–>
不被代码压缩的部分
<!–wp-compress-html no compression–><!–wp-compress-html–>
这段代码注释出来的部分即表示此段加入后,不会被压缩。
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!