Last active
August 29, 2015 14:16
-
-
Save mikejolley/450c498b4681082e3a5d to your computer and use it in GitHub Desktop.
Change resume notification recipient - place code in theme functions.php
This file contains hidden or 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_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