Last active
April 3, 2019 21:24
-
-
Save wplit/c8187b6477d9f57a540a651966f4039e to your computer and use it in GitHub Desktop.
Remove default component CSS from Oxygen
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
// Remove default Oxygen.css | |
add_action( 'oxygen_enqueue_scripts', 'lit_dequeue_scripts' ); | |
function lit_dequeue_scripts() { | |
wp_dequeue_style("oxygen"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment