有没有办法在 Drupal 中将用户名作为配置文件的链接输出?

发布于 2024-09-12 09:34:19 字数 106 浏览 6 评论 0原文

我使用 pathauto,因此用户配置文件具有 /user/name-name 格式的干净 URL

如何将用户名输出为配置文件的链接?我见过 theme() 函数用来做类似的事情吗?

Im using pathauto so user profiles have a clean URL in the format /user/name-name

How can I output the users name as a link to the profile? Ive seen the theme() function used to do stuff similar to this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空城缀染半城烟沙 2024-09-19 09:34:19

使用 l() 函数创建链接并链接到用户/uid。使用 l 时,它将转换为您在 pathauto 中设置的内容。

Use the l() function to create the link and make the link to user/uid. When using l, it will be converted to whatever you set it up to in pathauto.

居里长安 2024-09-19 09:34:19

如果您希望用户名作为链接文本,请使用 theme('username', $account);,其中 $account 是来自 user_load() 的完全加载的用户对象。

If you want the user's name as the text of the link, use theme('username', $account); where $account is the fully-loaded user object from user_load().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文