Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created February 10, 2015 19:57
Show Gist options
  • Save mikejolley/6fa9a4fd6f78745d6e08 to your computer and use it in GitHub Desktop.
Save mikejolley/6fa9a4fd6f78745d6e08 to your computer and use it in GitHub Desktop.
Applications - Change who gets the email
add_filter( 'create_job_application_notification_recipient', 'custom_create_job_application_notification_recipient', 10, 3 );
function custom_create_job_application_notification_recipient( $send_to, $job_id, $application_id ) {
// change $send_to here
return $send_to;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment