ممنونم جناب مصطفی .فکر میکنم ایراد از author info widget باشد که دارم استفاده میکنم باید کد اونو تغییر بدم.
یک نگاه به کدش کنید :`
<?php Echo $this->get_option('widget_title') ?>
<?php ForEach ($this->get_option('author') AS $author) : ?>
<?php If ($this->get_option('show_name') && $author->display_name) : ?>
<div class="author-name"><?php Echo $author->display_name ?></div>
<?php EndIf ?>
<?php If ($this->get_option('show_gravatar') && $author->user_email) : ?>
<div class="author-avatar"><?php Echo get_avatar($author->user_email, $this->get_option('gravatar_size')) ?></div>
<?php EndIf ?>
<?php If ($author->description) : ?>
<p class="author-description"><?php Echo nl2br($author->description)?></p>
<?php EndIf ?>
<div class="clear"></div>
<ul class="author-contact">
<?php If ($this->get_option('show_website') && $author->user_url) : ?>
<li class="author-website">user_url?>" title="<?php Echo $this->get_option('caption_website') ?>"><?php Echo $this->get_option('caption_website') ?>
<?php EndIf ?>
<?php If ($this->get_option('show_email') && $author->user_email) : ?>
<li class="author-email">user_email?>" title="<?php Echo $this->get_option('caption_email') ?>"><?php Echo $this->get_option('caption_email') ?>
<?php EndIf ?>
<?php If ($this->get_option('show_jabber') && $author->jabber) : ?>
<li class="author-jabber">jabber ?>" title="<?php Echo $this->get_option('caption_jabber') ?>"><?php Echo $this->get_option('caption_jabber') ?>
<?php EndIf ?>
<?php If ($this->get_option('show_aim') && $author->aim) : ?>
<li class="author-aim">aim) ?>" title="<?php Echo $this->get_option('caption_aim') ?>"><?php Echo $this->get_option('caption_aim') ?>
<?php EndIf ?>
<?php If ($this->get_option('show_yim') && $author->yim) : ?>
<li class="author-yim">yim ?>" title="<?php Echo $this->get_option('caption_yim') ?>"><?php Echo $this->get_option('caption_yim') ?>
<?php EndIf ?>
<?php If ($this->get_option('show_posts_link')) : ?>
<li class="author-posts-link">ID)?>" title="<?php Echo $this->posts_link_caption($author->display_name) ?>"><?php Echo $this->posts_link_caption($author->display_name) ?>
<?php EndIf ?>
<div class="clear"></div>
<?php EndForEach;
/* End of File */
این آخر یه جا هست که لینک پست ها رو تعریف میکنه .نمیدونم چهطوری تغییرش بدم که که به جای لینک همه پستها خود پستها رو بیاره.