Skip to content

Instantly share code, notes, and snippets.

@miklb
Created April 25, 2017 14:52
Show Gist options
  • Save miklb/db6f6bd024174927716b1a95fc54cee6 to your computer and use it in GitHub Desktop.
Save miklb/db6f6bd024174927716b1a95fc54cee6 to your computer and use it in GitHub Desktop.
// 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