How do I get a user's profile path in Drupal based on the author of the current node?
<?php print t('Posted on !date by !username', array('!username' => theme('username', $node), '!date' => format_date($node->created,'custom','m.d.y'))); ?>
The above gets me the right url, but that's all i want... the url.