X

Enable GZIP Output Compression

Snippets by IsItWP

Do you want to enable GZIP output compression to reduce the page load time and HTTP response time? While there’s probably a plugin for this, we have created a quick code snippet that you can use to enable GZIP output compression in WordPress.

Instructions:

All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:

if(extension_loaded("zlib") && (ini_get("output_handler") != "ob_gzhandler"))
   add_action('wp', create_function('', '@ob_end_clean();@ini_set("zlib.output_compression", 1);'));

Or, you can also add this code to your .htaccess file:

# BEGIN GZIP

AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript

# END GZIP

Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.

If you liked this code snippet, please consider checking out our other articles on the site like: 28 best WordPress resume theme to create best impression and how to create a multi-page form in WordPress.

Comments   Leave a Reply

  1. Wow, great tip. My personal WP blog is significant faster.

    One thing that I’m nervous is about to implement on the commercial site, is this effect to the google ranking?

    1. I find people say a wide range of things, i would just give it a try and use webmaster tools to check and make sure things are working properly if not then disable it if you have no problems run with it.

  2. Tweets that mention Wordpress Enable GZIP output compression – wpsnipp.com Wordpress code snippets for your blog -- Topsy.com January 2, 2011 at 10:33 pm

    […] This post was mentioned on Twitter by wp_freak, WPSNIPP. WPSNIPP said: #wordpress Enable GZIP output compression http://bit.ly/hBkhmF #blog please RT 🙂 […]

Add a Comment Cancel reply

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our privacy policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WordPress Launch Checklist

The Ultimate WordPress Launch Checklist

We've compiled all the essential checklist items for your next WordPress website launch into one handy ebook.
Yes, Send Me the Free eBook!