Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunshinephotocart/6fa591c0b36cb1caf1def4619b21cb05 to your computer and use it in GitHub Desktop.
Save sunshinephotocart/6fa591c0b36cb1caf1def4619b21cb05 to your computer and use it in GitHub Desktop.
Allow CSS files
// Add this to your theme's functions.php file
// Or use this plugin https://wordpress.org/plugins/insert-headers-and-footers/
add_filter( 'sunshine_allowed_css', 'sunshine_custom_allowed_css' );
function sunshine_custom_allowed_css( $allowed ) {
$allowed[] = 'cookie'; // This must contain a keyword from the wp_enqueue_style from your plugin/theme
return $allowed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment