Advertisement
BakerMan

Selectively dequeue Tribe stylesheet

Feb 10th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. /**
  2.  * Run our function early on in the wp_head action
  3.  */
  4. add_action( 'wp_head', 'remove_tribe_theme_styles_for_single_events', 5 );
  5.  
  6. /**
  7.  * Check if it is a single event and remove the relevant stylesheet.
  8.  */
  9. function remove_tribe_theme_styles_for_single_events() {
  10.     global $wp_query;
  11.     if ( isset($wp_query->tribe_is_event) && $wp_query->tribe_is_event && $wp_query->is_singular )
  12.         wp_dequeue_style( TribeEvents::POSTTYPE . '-calendar-style' );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement