返回介绍

wp_get_user_contact_methods()

发布于 2017-09-11 12:09:54 字数 2002 浏览 931 评论 0 收藏 0

wp_get_user_contact_methods( WP_User $user = null )

Set up the user contact methods.


description

Default contact methods were removed in 3.6. A filter dictates contact methods.


参数

$user

(WP_User) (Optional) WP_User object.

Default value: null


返回值

(array) Array of contact methods and their labels.


源代码

File: wp-includes/user.php

function wp_get_user_contact_methods( $user = null ) {
	$methods = array();
	if ( get_site_option( 'initial_db_version' ) < 23588 ) {
		$methods = array(
			'aim'    => __( 'AIM' ),
			'yim'    => __( 'Yahoo IM' ),
			'jabber' => __( 'Jabber / Google Talk' )
		);
	}

	/**
	 * Filters the user contact methods.
	 *
	 * @since 2.9.0
	 *
	 * @param array   $methods Array of contact methods and their labels.
 	 * @param WP_User $user    WP_User object.
	 */
	return apply_filters( 'user_contactmethods', $methods, $user );
}

更新日志

Versiondescription
3.7.0Introduced.

相关函数

Uses

  • wp-includes/l10n.php: __()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/option.php: get_site_option()
  • wp-includes/user.php: user_contactmethods

Used By

  • wp-admin/includes/user.php: edit_user()
  • wp-includes/user.php: _get_additional_user_keys()
  • wp-includes/user.php: _wp_get_user_contactmethods()
  • wp-includes/user.php: wp_insert_user()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文