Search
Categories
[WP] Bật gzip cho phần html của Thesis
Để bật gzip cho phần html của Thesis thì các bạn cần thêm đoạn code sau vào file custom-functions.php
/********************************************************************
Enable Gzip for Thesis
********************************************************************/
add_action('get_header', 'enable_gzip');
function enable_gzip() {?>
<?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); ?>
<?php
}
01.
