Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function my_pmpro_disable_member_emails($recipient, $email)
  2. {
  3. if(str_pos($email->template, "_admin") == false) //this is not an admin email template
  4. $recipient = NULL;
  5. return $recipient;
  6. }
  7. add_filter("pmpro_email_recipient", "my_pmpro_disable_member_emails", 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement