Add event category slug to body class
-
Hi there!
I tried several things but didn’t get this to work:
On a single events page, is there a way to add the current event category to the body class?I tried
add_filter( 'body_class', 'add_event_category_to_body_class'); function add_event_category_to_body_class( $classes ) { if ( em_is_event_page() ) { $classes[] = EM_Events::get('category'); return $classes; } }
but this won’t work. Is EM_Events::get() the right function for this anyway?
Thanks for any help,
Michael
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Add event category slug to body class’ is closed to new replies.