On the Wordpress site I\'m working on, it lists posts by category, but I am also after a page that lists ALL the posts (with pagination, showing 10 per page). How would I go
You could create a new page template with this loop in it:
'post', 'posts_per_page' => 10, 'paged' => $paged ); $wp_query = new WP_Query($args); while ( have_posts() ) : the_post(); ?> max_num_pages); ?>