Skip to content

Instantly share code, notes, and snippets.

@askwpgirl
Created May 3, 2024 21:42
Show Gist options
  • Save askwpgirl/ac00713bdcfa431c0fa2da6c933542b5 to your computer and use it in GitHub Desktop.
Save askwpgirl/ac00713bdcfa431c0fa2da6c933542b5 to your computer and use it in GitHub Desktop.
Add category body class to The Events Calendar category archives
<?php
add_filter( 'body_class', 'tec_archive_body_class' );
function tec_archive_body_class( array $classes ) {
if (is_tax( 'tribe_events_cat' ) ) {
$classes[] = 'rg-events-category';
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment