如何输出压缩的 html 代码 -m6米乐app登录

2,305views
no comments

共计 403 个字符,预计需要花费 2 分钟才能阅读完成。

下面就是一个对 html 进行压缩的函数:


function wpjam_minify_html($html) {
    $search = array('/>[^s] /s',  // 删除标签后面空格
        '/[^s] ',
        '<',
        '\1'
    );
    $html = preg_replace($search, $replace, $html);
    return $html;
}

对于 wordpress 博客来说,将上面的函数和下面的代码复制到当前主题的 functions.php 文件中,就可以实现输出页面 html 代码的压缩:


add_action("wp_loaded", 'wp_loaded_minify_html');
function wp_loaded_minify_html(){ob_start('wpjam_minify_html');
}
正文完
 
m6米乐app登录 copyright notice: our original article, by 网站建设 2013-11-21 publish, total 403 words.
转载说明:除特殊说明外本站文章皆由cc-4.0协议发布,转载请注明出处。
comment(no comments)
网站地图