Created
April 25, 2017 14:52
-
-
Save miklb/db6f6bd024174927716b1a95fc54cee6 to your computer and use it in GitHub Desktop.
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
// Your theme probably already has a function to enqueue_scrpts scripts in functions.php | |
// You should just be able to add the deregister/dequeue to that | |
function independence_scripts() { | |
wp_deregister_style( 'kind' ); | |
wp_dequeue_style( 'kind' ); | |
wp_deregister_style( 'indieweb' ); | |
wp_dequeue_style( 'indieweb' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'independence_scripts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment