!
也想出现在这里? 联系我们
广告位

WordPress前端代码压缩

对于前端的代码是直接影响到百度搜索抓取效率的,如何高效的对 WordPress 主题前端代码进行压缩来提升网站加速呢,下面分享一段代码给大家使用,这个前端代码压缩方法可以高效优化前端访问,但是需要注意,对于部分主题是会对前端的调用动态脚本产生负面影响的,就是说可能导致功能不可用或是错误提示。

第一、

实现 WordPress 前端代码压缩功能

  1. //无插件压缩WordPress前端代码
  2. function wp_compress_HTML(){
  3. function wp_compress_html_main ($buffer){
  4. $initial=strlen($buffer);
  5. $buffer=explode("<!--wp-compress-html-->", $buffer);
  6. $count=count ($buffer);
  7. for ($i = 0; $i <= $count; $i++){
  8. if (stristr($buffer[$i], '<!--wp-compress-html no compression-->')) {
  9. $buffer[$i]=(str_replace("<!--wp-compress-html no compression-->", " ", $buffer[$i]));
  10. } else {
  11. $buffer[$i]=(str_replace("\t", " ", $buffer[$i]));
  12. $buffer[$i]=(str_replace("\n\n", "\n", $buffer[$i]));
  13. $buffer[$i]=(str_replace("\n", "", $buffer[$i]));
  14. $buffer[$i]=(str_replace("\r", "", $buffer[$i]));
  15. while (stristr($buffer[$i], ' ')) {
  16. $buffer[$i]=(str_replace(" ", " ", $buffer[$i]));
  17. }
  18. }
  19. $buffer_out.=$buffer[$i];
  20. }
  21. $final=strlen($buffer_out);
  22. $savings=($initial-$final)/$initial*100;
  23. $savings=round($savings, 2);
  24. $buffer_out.="\n<!--压缩前的大小: $initial bytes; 压缩后的大小: $final bytes; 节约:$savings% -->";
  25. return $buffer_out;
  26. }
  27. //WordPress后台不压缩
  28. if ( !is_admin() ) {
  29. ob_start("wp_compress_html_main");
  30. }
  31. }
  32. add_action('init', 'wp_compress_html');
  33. //当检测到文章内容中有代码标签时文章内容不会被压缩
  34. function unCompress($content) {
  35. if(preg_match_all('/(crayon-|<\/pre>)/i', $content, $matches)) {
  36. $content = '<!--wp-compress-html--><!--wp-compress-html no compression-->'.$content;
  37. $content.= '<!--wp-compress-html no compression--><!--wp-compress-html-->';
  38. }
  39. return $content;
  40. }
  41. add_filter( "the_content", "unCompress");

将代码添加到当前主题的 Functions.php 文件中。

第二、

不需要进行压缩的代码需要特别备注出来

  1. <!--wp-compress-html--><!--wp-compress-html no compression-->

如果不希望被压缩的代码填写到这个里

  1. <!--wp-compress-html no compression--><!--wp-compress-html-->

这个功能就是保护我们容易出错的代码,提供的避免问题部分出现的解决方案。

给TA打赏
共{{data.count}}人
人已打赏
WordPress教程

WordPress登陆和未登陆用户显示不同菜单

2024-3-1 9:36:12

WordPress教程

WordPress 禁止多人同时登录一个账号

2024-3-1 9:36:23

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索