Skip to content

Instantly share code, notes, and snippets.

@bdeleasa
Created July 7, 2015 15:23
Show Gist options
  • Save bdeleasa/3ff476a14420f6811478 to your computer and use it in GitHub Desktop.
Save bdeleasa/3ff476a14420f6811478 to your computer and use it in GitHub Desktop.
Dequeue's the Simple Contact Info plugin styles.
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