Created
October 22, 2014 02:40
-
-
Save ckpicker/b5cd24e28819181b5f7b to your computer and use it in GitHub Desktop.
Community Events Add-on // Add Custom CSS to Community Events Pages
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
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