Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created January 13, 2014 10:28
Show Gist options
  • Save jbutko/8397873 to your computer and use it in GitHub Desktop.
Save jbutko/8397873 to your computer and use it in GitHub Desktop.
WP, functions.php: Better WordPress Minify - exclude CSS
/* BWP minify - exclude CSS */
add_filter('bwp_minify_style_ignore', 'exclude_my_css');
function exclude_my_css($excluded) {
$excluded = array('gforms_css');
return $excluded;
}
// From http://wordpress.org/support/topic/plugin-better-wordpress-minify-gravity-forms-compatibility
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment