Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Last active August 29, 2015 14:16
Show Gist options
  • Save mikejolley/450c498b4681082e3a5d to your computer and use it in GitHub Desktop.
Save mikejolley/450c498b4681082e3a5d to your computer and use it in GitHub Desktop.
Change resume notification recipient - place code in theme functions.php
add_filter( 'resume_manager_new_resume_notification_recipient', 'change_resume_manager_new_resume_notification_recipient' );
function change_resume_manager_new_resume_notification_recipient( $email ) {
return '[email protected]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment