1、把模板目錄下的style.css複製一份出來,命名為style.css.php,接著在style.css.php頂部加入這句話:
<?php if(extension_loaded(‘zlib’)) {ob_start(‘ob_gzhandler’);}header(“Content-type: text/css”); ?>
最後加上下面程式碼:
<?php if(extension_loaded(‘zlib’)) {ob_end_flush();} ?>
2、按照下面的方式修改header.php中的css連線
##原來的:<link rel=”stylesheet” type=”text/css” media=”screen” href=”/style.css”/>
<link rel=”stylesheet” type=”text/css” media=”screen”href=”/style.css.php”/>
<?php if ( extension_loaded(‘zlib’) ) {ob_start(‘ob_gzhandler’);}header(“Content-Type: text/javascript”); ?>
以上是WordPress怎麼實作Gzip壓縮js和css的詳細內容。更多資訊請關注PHP中文網其他相關文章!