---
title: Concatenate Javascript and CSS Files with WP Minify
date: 2009-10-13T12:31:00+00:00
modified: 2009-10-13T12:31:00+00:00
permalink: https://kaspars.net/blog/concatenate-javascript-and-css-files-with-wp-minify
post_type: post
author:
  name: Kaspars
  avatar: https://reverse.kaspars.net/gravatar/avatar/92bfcd3a8c3a21a033a6484d32c25a40b113ec6891f674336081513d5c98ef76?s=96&d=mm&r=g
post_tag:
  - Plugin
category:
  - WordPress
---

# Concatenate Javascript and CSS Files with WP Minify

Minimizing the number of HTTP requests is one of the easiest ways to make your website load significantly faster. [WP Minify](http://wordpress.org/extend/plugins/wp-minify/) is a WordPress plugin by [Thaya Kareeson](http://omninoggin.com/about/ "Author of WP Minify Plugin") that combines all Javascript and CSS files into one respective file.

WP Minfy uses the old trick of modifying the [output buffer](http://us3.php.net/manual/en/function.ob-get-contents.php) before it is sent to the user. And until all plugins and themes start using `wp_enqueue_script` and `wp_enqueue_style`, this will remain the most reliable method of doing it.

I approve this plugin.