Skip to content

Instantly share code, notes, and snippets.

@habibmac
Created June 6, 2012 16:45
Show Gist options
  • Save habibmac/2883176 to your computer and use it in GitHub Desktop.
Save habibmac/2883176 to your computer and use it in GitHub Desktop.
WP: Enable GZIP output compression
if(extension_loaded("zlib") && (ini_get("output_handler") != "ob_gzhandler"))
add_action('wp', create_function('', '@ob_end_clean();@ini_set("zlib.output_compression", 1);'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment