Created
March 24, 2015 10:30
-
-
Save ejangi/570042f8479c396fa97c to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
// Dequeue the junky styles and scripts that plugins inject into your template: | |
function dequeue_doubleup_styles() { | |
wp_dequeue_style('stylesheet-id'); | |
} | |
add_action('wp_print_styles', 'dequeue_doubleup_styles', 999); | |
function dequeue_doubleup_scripts() { | |
wp_dequeue_script('script-id'); | |
} | |
add_action('wp_enqueue_scripts', 'dequeue_doubleup_scripts', 999); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment