Last active
May 11, 2017 17:19
-
-
Save thesaurabhk/870be80272fbc1a789d158ad1a006994 to your computer and use it in GitHub Desktop.
Remove Dashicons from Genesis Theme https://technumero.com/remove-dashicons-from-genesis-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 Dashicons from Genesis Theme | |
add_action( 'wp_print_styles', 'tn_dequeue_dashicons_style' ); | |
function tn_dequeue_dashicons_style() { | |
wp_dequeue_style( 'dashicons' ); | |
wp_deregister_style( 'dashicons' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment