Right now it is just available by adding a snippet to your theme’s functions.php file or using a Snippet plugin:
// Admin Updated Job Notification
add_filter( 'job_manager_email_admin_updated_job_to', function( $email ) {
return 'email@example.com';
} );
// Admin New Job Notification
add_filter( 'job_manager_email_admin_new_job_to', function( $email ) {
return 'email@example.com';
} );
// Admin Expiring Job Notification
add_filter( 'job_manager_email_admin_expiring_job_to', function( $email ) {
return 'email@example.com';
} );
Thread Starter
alzaran
(@ajoyce2016)
Thanks! This is perfect. I checked the documentation, but couldn’t find this. Is there a master list of filters available somewhere?
No, all filter documentation is currently just inline. We hope to have more filter docs up soon.