Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theeventscalendar/cfb5fda94f5f2a703b34 to your computer and use it in GitHub Desktop.
Save theeventscalendar/cfb5fda94f5f2a703b34 to your computer and use it in GitHub Desktop.
Auto-publishes events submitted by logged in users
//Add to functions.php of your active theme
add_filter( 'tribe_events_community_sanitize_submission', 'set_community_events_publication_status' );
function set_community_events_publication_status( $submission ) {
// Escape, assuming default is set to 'draft' and 'allow anonymous submits'
if ( ! is_user_logged_in() ) return $submission;
$submission['post_status'] = 'publish';
return $submission;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment