Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theeventscalendar/786d7a962b29f2ce2fa7 to your computer and use it in GitHub Desktop.
Save theeventscalendar/786d7a962b29f2ce2fa7 to your computer and use it in GitHub Desktop.
Use this snippet to add CSS to your Community Events pages
add_action( 'wp_head', 'community_add_css' );
function community_add_css() {
if ( tribe_is_community_edit_event_page() || tribe_is_community_my_events_page() ) {
?>
<style>
YOUR CSS STYLES GO HERE
</style>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment