I'm using ...
<?php wp_get_archives('type=postbypost&limit=8'); ?>
to display a list of the latest posts by title.
How can I put the date-of-post and the author next to the title?
Maybe it is not possible with wp_get_archives?
I'm using ...
<?php wp_get_archives('type=postbypost&limit=8'); ?>
to display a list of the latest posts by title.
How can I put the date-of-post and the author next to the title?
Maybe it is not possible with wp_get_archives?
Better to just use a query_posts() loop to do that and use the_time(), and the_author(), in your code.
This topic has been closed to new replies.