Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #15056


Ignore:
Timestamp:
10/07/2010 03:27:38 PM (14 years ago)
Author:
Denis-de-Bernardy
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #15056 – Description

    initial v1  
    11I'd like to be able to customize the new user's registration email, but this requires an additional filter hook in wp_new_user_notification(). The hook could be something as straightforward as this:
    22==================================================================
     3{{{
    34function wp_new_user_notification($user_id, $plaintext_pass = '') {
    45        $user = new WP_User($user_id);
     
    2930
    3031}
     32}}}