Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created October 5, 2015 16:59
Show Gist options
  • Save kraftbj/ecfe117b7df296c94f51 to your computer and use it in GitHub Desktop.
Save kraftbj/ecfe117b7df296c94f51 to your computer and use it in GitHub Desktop.
add e-mails to resume
<?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