Created
December 5, 2019 14:43
-
-
Save richardmtl/ca27845f904bb31bcb610830224554d1 to your computer and use it in GitHub Desktop.
Redirect after a resume is submitted
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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