返回介绍

admin_created_user_email()

发布于 2017-09-10 21:27:14 字数 1548 浏览 1389 评论 0 收藏 0

admin_created_user_email( string $text )

description


参数

$text

(string) (Required)


返回值

(string)


源代码

File: wp-admin/includes/user.php

function admin_created_user_email( $text ) {
	$roles = get_editable_roles();
	$role = $roles[ $_REQUEST['role'] ];
	/* translators: 1: Site name, 2: site URL, 3: role */
	return sprintf( __( 'Hi,
You\'ve been invited to join \'%1$s\' at
%2$s with the role of %3$s.
If you do not want to join this site please ignore
this email. This invitation will expire in a few days.

Please click the following link to activate your user account:
%%s' ), wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ) );
}

Collapse full 源代码 code View on Trac


相关函数

Uses

  • wp-admin/includes/user.php: get_editable_roles()
  • wp-includes/l10n.php: translate_user_role()
  • wp-includes/l10n.php: __()
  • wp-includes/formatting.php: wp_specialchars_decode()
  • wp-includes/general-template.php: get_bloginfo()
  • wp-includes/link-template.php: home_url()
  • Show 1 more use Hide more uses

User Contributed Notes

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

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

发布评论

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