如何根据当前节点的作者在Drupal中获取用户的个人资料路径?
<?php print t('Posted on !date by !username', array('!username' => theme('username', $node), '!date' => format_date($node->created,'custom','m.d.y'))); ?>
上面给了我正确的网址,但这就是我想要的...网址。
答案 0 :(得分:8)
$link = drupal_get_path_alias('user/' . $node->uid);
至少我认为这是最直接的。我确信有更正确的答案。