I'm sorry if this question is already been done, but I couldn't solve my problem after reading similar questions.
I would like to have customized author pages, in which each author can write text and insert images directly from the editor of wordpress.
Under the written page author, you should see the latest articles written by him (style blog).
I was able to create a template that works perfectly. The problem is that with this code I should create 20 different templates (one for each author) changing the id.
How can I tell wordpress to include the latest articles written by the author of each page?
Here's the code I used in my page template:
<?php query_posts('author=4'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
query_postsline – Mridul Aggarwal Nov 15 '12 at 18:16