I want to have a page that will display a list of all posts by date like this: PostDate1...............PostTitle1................PostCategories1 PostDate2...............PostTitle2................PostCategories2 PostDate3...............PostTitle3................PostCategories3 PostDate4...............PostTitle4................PostCategories4 ......etc..... I would like each post title clickable and obviously linked to the actual post. I've scoured the web for plugins and even php scripts, but haven't found anything I've really wanted. Any suggestions are appreciated, but it might just come down to how to write some php that will pull that info and put it into an organized table on a page. Thanks.
To generate post parts you can use WordPress tags. the_title(); for title, the_date(); for date and I can't remember the other one off my head for categories. Perhaps organising these in a table would produce the desired result ?