author için bir sayfa template oluşturup aşağıdaki kodları kullanabilirsiniz.

<?php $idler = 1,2,5,58;?>
<?php $authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users WHERE id IN ($idler) ORDER BY id"); foreach($authors as $author)   { ?>
<?php query_posts('showposts=1&author='.$author->ID.''); if(have_posts()): while ( have_posts() ) : the_post();?>
<div class="saydir">
<div class="yazarresmi"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php echo get_wp_user_avatar(get_the_author_meta('ID')); ?></a></div>
<div class="yazardi"><span><a href="<?php echo get_bloginfo('home').'/?author='.$author->ID; ?>"><?php echo get_the_author_meta('display_name', $author->ID); ?></a></span></div>
<div class="sonyazisi"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a><span class="tarihi"><?php the_time('j F Y') ?></span></div>
<div class="digeryazilarisay"><a href="<?php echo get_bloginfo('home').'/?author='.$author->ID; ?>">Diğer Yazıları »</a></div>


</div>

<?php endwhile; ?>
<?php endif; ?>
<?php } ?>

$idler = 1,2,5,58 bilgilieri çekilecek yazarları belirlemenizi sağlar, kolay gelsin.