Skip to content

Instantly share code, notes, and snippets.

@elimn
Created February 10, 2016 20:57
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 elimn/4c321fa3d568446e08a1 to your computer and use it in GitHub Desktop.
Save elimn/4c321fa3d568446e08a1 to your computer and use it in GitHub Desktop.
MT | TEC | Community Events redirect to custom login form
<?php
/*
* The Events Calendar Community Events redirect to custom login form
*/
function tribe_ce_redirect_login () {
wp_safe_redirect( site_url( '/login/' ) );
exit;
}
add_action ( 'tribe_ce_event_submission_login_form', 'tribe_ce_redirect_login' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment