Skip to content

Instantly share code, notes, and snippets.

@richardmtl
Created December 5, 2019 14:43
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 richardmtl/ca27845f904bb31bcb610830224554d1 to your computer and use it in GitHub Desktop.
Save richardmtl/ca27845f904bb31bcb610830224554d1 to your computer and use it in GitHub Desktop.
Redirect after a resume is submitted
add_action( 'resume_manager_resume_submitted', 'wpjmres_final_redirect', 99);
function wpjmres_final_redirect(){
wp_redirect('https://DOMAIN.COM');
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment