Skip to content

Instantly share code, notes, and snippets.

@meloniq
Created March 1, 2014 20:21
Show Gist options
  • Save meloniq/9296597 to your computer and use it in GitHub Desktop.
Save meloniq/9296597 to your computer and use it in GitHub Desktop.
Preventing WordPress from Sending emails
function childtheme_no_emails( &$phpmailer ) {
// Empty out the values that may be set
$phpmailer->ClearAllRecipients();
$phpmailer->ClearAttachments();
$phpmailer->ClearCustomHeaders();
$phpmailer->ClearReplyTos();
}
add_action( 'phpmailer_init', 'childtheme_no_emails', 99, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment