Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created October 3, 2013 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckpicker/6809345 to your computer and use it in GitHub Desktop.
Save ckpicker/6809345 to your computer and use it in GitHub Desktop.
Community 3.1 Add-on // Add Custom CSS to 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>
/* PUT YOUR CSS HERE FOR CUSTOMIZATIONS */
</style>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment