Changeset 60644 for trunk/src/wp-includes/user.php
- Timestamp:
- 08/18/2025 12:31:19 PM (9 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r60634 r60644 2954 2954 * Sets up the user contact methods. 2955 2955 * 2956 * Default contact methods were removed in 3.6. A filter dictates contact methods. 2956 * Default contact methods were removed for new installations in WordPress 3.6 2957 * and completely removed from the codebase in WordPress 6.9. 2958 * 2959 * Use the {@see 'user_contactmethods'} filter to add or remove contact methods. 2957 2960 * 2958 2961 * @since 3.7.0 2962 * @since 6.9.0 Removed references to `aim`, `jabber`, and `yim` contact methods. 2959 2963 * 2960 2964 * @param WP_User|null $user Optional. WP_User object. … … 2963 2967 function wp_get_user_contact_methods( $user = null ) { 2964 2968 $methods = array(); 2965 if ( get_site_option( 'initial_db_version' ) < 23588 ) {2966 $methods = array(2967 'aim' => __( 'AIM' ),2968 'yim' => __( 'Yahoo IM' ),2969 'jabber' => __( 'Jabber / Google Talk' ),2970 );2971 }2972 2969 2973 2970 /**
Note: See TracChangeset
for help on using the changeset viewer.