Created
July 16, 2014 20:34
-
-
Save grappler/ed14f5972d335b4e2dfa to your computer and use it in GitHub Desktop.
Disable parent css for Responsive
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
<?php | |
function responsive_css() { | |
wp_dequeue_style( 'responsive-style' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'responsive_css' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment