Last active
September 18, 2015 21:44
-
-
Save bmoredrew/bb22c6c6b1ea73d0e76d to your computer and use it in GitHub Desktop.
Remove unused styles from The Events Calendar plugin
This file contains hidden or 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
//Remove unused styles from The Events Calendar plugin | |
function bd_remove_ecp_styles() | |
{ | |
$styles = array( | |
'tribe-events-bootstrap-datepicker-css', | |
'tribe-events-calendar-style', | |
'tribe-events-custom-jquery-styles', | |
'tribe-events-calendar-style', | |
'tribe-events-calendar-pro-style' | |
); | |
wp_deregister_style( $styles ); | |
} | |
add_action( 'wp_enqueue_scripts', 'bd_remove_ecp_styles', 100 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment