Skip to content

Instantly share code, notes, and snippets.

@andrezrv
Created April 7, 2014 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrezrv/10037849 to your computer and use it in GitHub Desktop.
Save andrezrv/10037849 to your computer and use it in GitHub Desktop.
Avoid sending mails when working locally.
<?php
/**
* Avoid sending mails when working locally.
*/
if ( ! function_exists( 'wp_mail' )
&& defined( 'WP_STAGE' )
&& 'local' == WP_STAGE
&& ( ! defined( 'WP_MAIL_LOCAL' ) || true !== WP_MAIL_LOCAL )
) {
function wp_mail( $to, $subject, $message, $headers = '' ) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment