Skip to content

Instantly share code, notes, and snippets.

@brianjking
Forked from wpsmith/calendarizeit.php
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianjking/165ee1c4b30e1a883fef to your computer and use it in GitHub Desktop.
Save brianjking/165ee1c4b30e1a883fef to your computer and use it in GitHub Desktop.
<?php
add_action( 'wp_enqueue_scripts', 'gs_calendarizeit_remove_scripts', 999 );
function gs_calendarizeit_remove_scripts() {
if ( gs_is_field_trip() || 'events' === get_post_type( get_the_ID() ) ) return;
$scripts = array(
'calendarize',
'jquery-easing',
'rrecur-parser',
'fullcalendar',
'fechahora',
'fc_dateformat_helper',
'calendarize-fcviews',
'calendarize',
'rhc-upcoming-widget',
'google-api3',
'rhc_gmap3',
'rhc-visibility-check',
);
foreach( $scripts as $s )
wp_dequeue_script( $s );
$styles = array(
'rhc-print-css',
'fullcalendar-theme',
'calendarize',
);
foreach( $styles as $s )
wp_dequeue_style( $s );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment