Created
February 27, 2019 14:47
-
-
Save stevenselcuk/d24af6e3b452f4ce289ec7f4a685dbe4 to your computer and use it in GitHub Desktop.
De-Register a goddamn Styling file from enqueue (WordPress)
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
| 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