Hi,
First off, thanks for the new release.
I am trying to limit the posts displayed using template-page-blog.php to just one category, but I am struggling.
I have tried adding a category to the query like this -
<?php
$wp_query = new WP_Query();
$wp_query->query( array( 'category=21, posts_per_page' => get_option( 'posts_per_page' ), 'paged' => $paged ) );
$more = 0;
?>
But it seems to be the wrong way to go about it.