Changes between Initial Version and Version 1 of Ticket #15056
- Timestamp:
- 10/07/2010 03:27:38 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15056 – Description
initial v1 1 1 I'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: 2 2 ================================================================== 3 {{{ 3 4 function wp_new_user_notification($user_id, $plaintext_pass = '') { 4 5 $user = new WP_User($user_id); … … 29 30 30 31 } 32 }}}