Created
January 13, 2014 10:28
-
-
Save jbutko/8397873 to your computer and use it in GitHub Desktop.
WP, functions.php: Better WordPress Minify - exclude CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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