Skip to content

Instantly share code, notes, and snippets.

View sgreer81's full-sized avatar

Stephen Greer sgreer81

View GitHub Profile
@sgreer81
sgreer81 / deactivate-fontawesome.php
Last active November 9, 2016 17:09
Deactivate Custom Facebook Feed FontAwesome
function sg_deactive_cff_fontawesome() {
wp_dequeue_style('cff_font_awesome');
}
add_action('wp_enqueue_scripts', 'sg_deactive_cff_fontawesome', 100);