mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://wordpress.stackexchange.com/questions/302176/how-to-disable-all-wordpress-emails-modularly-and-programatically
5 lines
131 B
Text
5 lines
131 B
Text
add_filter('wp_mail','disabling_emails', 10,1);
|
|
function disabling_emails( $args ){
|
|
unset ( $args['to'] );
|
|
return $args;
|
|
}
|