Skip to content

Instantly share code, notes, and snippets.

@stevenselcuk
Created February 27, 2019 14:47
Show Gist options
  • Select an option

  • Save stevenselcuk/d24af6e3b452f4ce289ec7f4a685dbe4 to your computer and use it in GitHub Desktop.

Select an option

Save stevenselcuk/d24af6e3b452f4ce289ec7f4a685dbe4 to your computer and use it in GitHub Desktop.
De-Register a goddamn Styling file from enqueue (WordPress)
function de-reg-style() {
wp_dequeue_style('style-id-is-here');
wp_deregister_style('style-id-is-here');
}
add_action('wp_enqueue_scripts','de-reg-style');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment