Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
267 views
in Technique[技术] by (71.8m points)

php - How do I add a filter to switch email recipient based on post category in Wordpress

I am using a Wordpress plugin for job posts to keep them out of the general blog posts, and they plugin offers a setting for a notification email upon application sent to an email recipient, but only 1. How do I get a function that will allow me to switch the email recipient based on the category of the job posting. Example, if the job is in "IT" then the notification email would go to "[email protected]" and a "Retail" category post would go to "[email protected]"

Based on some research for applying this logic to woocommerce, I have attempted to get some groundwork started on this, but would really appreciate help on doing it right. I know I am not as close as I would like, but here is what I have so far...

add_filter( 'hr_notification', 'custom_sjb_hr_notification_to', 10, 2 );
  function custom_sjb_hr_notification_to( $recipient, $email ) {
    if ('jobpost_category' == 'it');
      $to = apply_filter('sjb_hr_notification_to', '[email protected]');
    } else if ('jobpost_category' == 'retail') {
      $to = apply_filter('sjb_hr_notification_to', '[email protected]');
    } else  {
      $to = get_option('settings_hr_email');
    }
    return $recipient;
  }
question from:https://stackoverflow.com/questions/65942002/how-do-i-add-a-filter-to-switch-email-recipient-based-on-post-category-in-wordpr

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...