Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lizardking8610/9beb88345c00ecb2eac5b0c5de76ca9b to your computer and use it in GitHub Desktop.
Save lizardking8610/9beb88345c00ecb2eac5b0c5de76ca9b to your computer and use it in GitHub Desktop.
Remove FontAwesome from GP
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