Skip to content

Instantly share code, notes, and snippets.

@thesaurabhk
Last active May 11, 2017 17:19
Show Gist options
  • Save thesaurabhk/870be80272fbc1a789d158ad1a006994 to your computer and use it in GitHub Desktop.
Save thesaurabhk/870be80272fbc1a789d158ad1a006994 to your computer and use it in GitHub Desktop.
<?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