有没有办法在 Drupal 中将用户名作为配置文件的链接输出?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 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.
如果您希望用户名作为链接文本,请使用
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().