سلام
مدتی هست دنبال این بودم تا پروفایل نویسنده رو توی یه صفحه جدا نشون بدم، توی فروم وردپرس کد زیر رو پیدا کردم، لطفاً دوستان اگر اطلاع دارند نحوه استفاده از این کد رو بگن:
<?php
get_header();
if(isset($_GET['author_name'])) :
$curauth = get_userdatabylogin($author_name); // NOTE: 2.0 bug requires get_userdatabylogin(get_the_author_login());
else :
$curauth = get_userdata(intval($author));
endif;
?>
<!-- Container -->
<div class="CON">
<!-- Start SCS -->
<div class="SCS">
<?php include (TEMPLATEPATH . "/menu.php"); ?>
<h1>About: <?php echo $curauth->display_name; ?></h1><?php
echo get_avatar($curauth->user_email);
?>
<dl>
<dt>E-mail</dt>
<dd><?php echo $curauth->user_email; ?></dd>
<dt>AIM / MSN</dt>
<dd><?php echo $curauth->aim;?></dd>
<dt>Gtalk</dt>
<dd><?php echo $curauth->jabber;?></dd>
<dt>Website</dt>
<dd><a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url; ?></a></dd>
<dt>More profile information</dt>
<dd><?php echo $curauth->user_description; ?></dd>
</dl>
</div>
<!-- End SC -->
<?php get_sidebar(); ?>
<!-- Container -->
</div>
<?php get_footer(); ?>
ممنون