WordPress Snippet: Complete List of Posts
< View plain text > php query_posts($query_string.'posts_per_page=-1'); while(have_posts()) { the_post(); the_time(); the_title(); } This will display the time and title for all your posts. This could result in a very long page, and a more usable way of doing it would be to change the posts_per_page parameter, and…