Created
August 21, 2015 07:22
-
-
Save generatepress/54d599afe9933c02f1b3 to your computer and use it in GitHub Desktop.
Remove FontAwesome from GP
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
add_action( 'wp_enqueue_scripts', 'generate_remove_fontawesome', 100 ); | |
function generate_remove_fontawesome() { | |
wp_dequeue_style( 'fontawesome' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment