Created
July 7, 2015 15:31
-
-
Save bdeleasa/7668d33225441b325070 to your computer and use it in GitHub Desktop.
Dequeue's the WP Social Networks Widget plugin styles
This file contains 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 | |
add_action( 'wp_enqueue_scripts', 'themename_dequeue_wpsnw_styles', 9999 ); | |
/** | |
* Removes the WP Social Networks Widget plugin styles because we're styling | |
* the icons with our theme CSS. | |
* | |
* @param none | |
* @return none | |
* | |
* @since 3.4.0 | |
*/ | |
function themename_dequeue_wpsnw_styles() { | |
wp_dequeue_style( 'wpsnw-styles' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment