Hi,
Auszug aus einer author.php
PHP
<div id="content">
<?php if(isset($_GET['author_name'])) : $curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif; ?>
<div class="post">
<h2>Über <?php echo $curauth->display_name; ?></h2>
<div class="entry">
........
<ol class="commentlist" style="list-style-type: none; margin: 0;">
<li class="pagenav">
<div class="comment-number"><?php cmd_show_avatar(); ?></div>
<h3><?php echo $curauth->user_firstname; ?> <?php echo $curauth->user_lastname; ?></h3>
<span class="commentmetadata">Nickname: <?php echo $curauth->display_name; ?></span>
<br />
<span class="commentmetadata">eMail: <?php echo $curauth->user_email; ?></span>
<br />
<span class="commentmetadata">Url: <a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url; ?></a></span>
<br />
<span class="commentmetadata">Vita:</span>
</li>
<li><span class="commentmetadata"><?php echo $curauth->user_description; ?></span></li>
</ol>
</div><!-- Ende entry //-->
</div><!-- Ende post //-->
Alles anzeigen
Gruß Iu