Created
May 3, 2024 21:42
-
-
Save askwpgirl/ac00713bdcfa431c0fa2da6c933542b5 to your computer and use it in GitHub Desktop.
Add category body class to The Events Calendar category archives
This file contains hidden or 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
<?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