Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created January 13, 2014 20:56
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/8407978 to your computer and use it in GitHub Desktop.
Save ckpicker/8407978 to your computer and use it in GitHub Desktop.
Community Events Add-on 3.3 // Add additional required fields
add_filter('tribe_events_community_required_fields', 'add_required_fields');
function add_required_fields() {
return array(
'post_content',
'post_title',
'EventStartDate'
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment