Skip to content

Instantly share code, notes, and snippets.

@caralgar
Last active October 14, 2015 07:22
Show Gist options
  • Save caralgar/cea9f05831c5171adaba to your computer and use it in GitHub Desktop.
Save caralgar/cea9f05831c5171adaba to your computer and use it in GitHub Desktop.
dequeue css, deregister style
<?php
function dequeue_css() {
wp_dequeue_style('child-style');
wp_deregister_style('child-style');
}
add_action('wp_enqueue_scripts','dequeue_css',1002);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment