Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thesaurabhk/a7937b57f31c45d4322e2f67831b6073 to your computer and use it in GitHub Desktop.
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
<?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