Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Created November 18, 2023 22:15
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 mikeyarce/3f51f45bc545de3d074ca911ea8388ac to your computer and use it in GitHub Desktop.
Save mikeyarce/3f51f45bc545de3d074ca911ea8388ac to your computer and use it in GitHub Desktop.
Redirect After Resume Submission
<?php
add_action( 'resume_manager_resume_submitted', 'wpjmres_final_redirect', 99);
function wpjmres_final_redirect(){
if ( is_admin() ) {
return;
}
wp_redirect('https://wpjm.local/test/');
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment