Created
July 7, 2015 15:23
-
-
Save bdeleasa/3ff476a14420f6811478 to your computer and use it in GitHub Desktop.
Dequeue's the Simple Contact Info 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
add_action( 'wp_enqueue_scripts', 'themename_dequeue_sci_scripts', 999 ); | |
/** | |
* Remove the Simple Contact Info styles from our theme | |
* | |
* @param none | |
* @return none | |
*/ | |
function yorksonlegal_dequeue_sci_scripts() { | |
wp_dequeue_style( 'contact-info' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment