Created
November 24, 2019 10:39
-
-
Save KittenCodes/a3fc5ed2564b5056c8bbca6da322a705 to your computer and use it in GitHub Desktop.
The Events Calendar - Event Popup
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
function tribe_add_gridview_class( $classes ) { | |
if ( is_post_type_archive( 'tribe_events' ) && tribe_is_month()) { | |
$classes[] = 'events-gridview'; | |
return $classes; | |
} else { | |
$classes[] = ''; | |
return $classes; | |
} | |
} | |
add_filter( 'body_class', 'tribe_add_gridview_class', 999 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment