Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created October 9, 2013 16:09
Show Gist options
  • Save ckpicker/6903757 to your computer and use it in GitHub Desktop.
Save ckpicker/6903757 to your computer and use it in GitHub Desktop.
Community 3.1 Add-on // Add Custom Javascript to the Submission Form
add_action( 'wp_footer', 'community_add_javascript' );
function community_add_javascript() {
if (tribe_is_community_edit_event_page()) {
?>
<script type="text/javascript">
//Your Custom Javascript Goes Here
</script>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment