When your blog has many content writer, you might consider put their information into their own posts. You need to put some code in your index.php or else (like loop.php, home.php) as the main page and inside your single page.
In the index.php you might need only display name or just full name like first and last name on your content writer. You need to put this code :
<?php the_author_meta('first_name'); ?>
<?php the_author_meta('last_name'); ?>
or like this to display display name :
<?php the_author_meta('display_name'); ?>
And then inside you single.php you need this code to display other information such as description, Yahoo Messenger, AIM, Website, and many more. If you want to know the detail click here. The syntax still the same just those code above but you need to change ‘display_name’ become what ever you want to show. If you want to see the sample page just visit http://www.jauhari.net and the resource’s right here.
Photos source http://www.flickr.com/photos/sanjoselibrary/5385261226/




Pingback: The simple way to show guest author name in your post | Jhez3R
Nice article, this is what I really want!