Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Created January 9, 2016 15:40
Show Gist options
  • Save jesseeproductions/0a4af5a83500f82af6ac to your computer and use it in GitHub Desktop.
Save jesseeproductions/0a4af5a83500f82af6ac to your computer and use it in GitHub Desktop.
The Events Calendar - Fix Mobile Month View in Genesis 2.2.6
/*
* The Events Calendar - Fix Mobile Month View in Genesis 2.2.6
* @version 1.0
*/
add_filter( 'post_class', 'tribe_genesis_event_class_hentry' );
function tribe_genesis_event_class_hentry( $classes ) {
$event_class = 'hentry';
if ( tribe_is_event_query() ) {
$classes[] = esc_attr( sanitize_html_class( $event_class ) );
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment