Last active
May 11, 2017 17:20
-
-
Save thesaurabhk/a7937b57f31c45d4322e2f67831b6073 to your computer and use it in GitHub Desktop.
Remove Font Awesome from WordPress theme https://technumero.com/remove-font-awesome-from-wordpress-theme
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 | |
//* You don't need to add the opening php tag shown above. | |
//* Only copy and paste the below given code in functions.php file. | |
//* TN Dequeue Styles - Remove Font Awesome from WordPress theme | |
add_action( 'wp_print_styles', 'tn_dequeue_font_awesome_style' ); | |
function tn_dequeue_font_awesome_style() { | |
wp_dequeue_style( 'fontawesome' ); | |
wp_deregister_style( 'fontawesome' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment