This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_wp_get_user_contactmethods( WP_User $user = null )

The old private function for setting up user contact methods.


Description

Use wp_get_user_contact_methods() instead.


Parameters

$user

(WP_User) (Optional) WP_User object.

Default value: null


Return

(array) Array of contact methods and their labels.


Source

File: wp-includes/user.php

function _wp_get_user_contactmethods( $user = null ) {
	return wp_get_user_contact_methods( $user );
}


Changelog

Changelog
Version Description
WP-2.9.0 Introduced.