Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 pathauto,因此用户配置文件有一个干净的 URL,格式为 /user/name-name
如何将用户名输出为个人资料的链接?我见过 theme() 函数用来做类似的事情吗?
使用 l() 函数创建链接并建立到 user/uid 的链接。使用 l 时,它将转换为您在 pathauto 中设置的任何内容。
如果您希望用户名作为链接的文本,请使用theme('username', $account);$account 是来自 user_load() 的完全加载的用户对象。
theme('username', $account);