W3cubDocs

/WordPress

_wp_get_user_contactmethods( WP_User $user = null )

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.

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

(string[]) Array of contact method labels keyed by contact method.

Source

File: wp-includes/user.php

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

Changelog

Version Description
2.9.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/_wp_get_user_contactmethods