Created
October 5, 2015 16:59
-
-
Save kraftbj/ecfe117b7df296c94f51 to your computer and use it in GitHub Desktop.
add e-mails to resume
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
<?php //remove in existing PHP file | |
add_filter( 'resume_manager_new_resume_notification_recipient', 'bk_add_resume_notif' ); | |
function bk_add_resume_notif( $recipients ){ | |
$recipients = "[email protected]"; | |
return $recipients; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment