Changeset 35742 for trunk/src/wp-includes/user.php
- Timestamp:
- 11/25/2015 10:37:35 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r35725 r35742 2199 2199 * @since 4.4.0 2200 2200 * 2201 * @param int $user_id ID of the newly created user. 2202 */ 2203 function wp_send_new_user_notifications( $user_id ) { 2204 wp_new_user_notification( $user_id, null, 'both' ); 2201 * @param int $user_id ID of the newly created user. 2202 * @param string $notify Optional. Type of notification that should happen. Accepts 'admin' or an empty string 2203 * (admin only), or 'both' (admin and user). Default 'both'. 2204 */ 2205 function wp_send_new_user_notifications( $user_id, $notify = 'both' ) { 2206 wp_new_user_notification( $user_id, null, $notify ); 2205 2207 } 2206 2208
Note: See TracChangeset
for help on using the changeset viewer.