wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_get_user_contact_methods › WordPress Function

Seit3.7.0
Veraltetn/v
wp_get_user_contact_methods ( $user = null )
Parameter:
  • (WP_User|null) $user Optional. WP_User object.
    Erforderlich: Nein
    Standard: null
Gibt zurück:
  • (string[]) Array of contact method labels keyed by contact method.
Definiert in:
Codex:
Changelog:
  • 6.9.0

Sets up the user contact methods.

Default contact methods were removed for new installations in WordPress 3.6 and completely removed from the codebase in WordPress 6.9. Use the {@see 'user_contactmethods'} filter to add or remove contact methods.


Quellcode

function wp_get_user_contact_methods( $user = null ) {
	$methods = array();

	/**
	 * Filters the user contact methods.
	 *
	 * @since 2.9.0
	 *
	 * @param string[]     $methods Array of contact method labels keyed by contact method.
	 * @param WP_User|null $user    WP_User object or null if none was provided.
	 */
	return apply_filters( 'user_contactmethods', $methods, $user );
}