jentanbernardus
7/16/2013 - 1:54 PM

WordPress: Disable new user and password change notification

WordPress: Disable new user and password change notification

<?php

if ( !function_exists('wp_new_user_notification') ) {

function wp_new_user_notification( ) {}

}

if ( !function_exists( 'wp_password_change_notification' ) ) {
    function wp_password_change_notification() {}
}

?>