I tried that code and it processed a page that kept looping and all of the content was blank. Here’s my whole template page:
<?php
/*
Template Name: Seasons
*/
get_header(); ?>
<div id="content-container">
<div id="content">
<div id="body">
<?php
$cat = 10;
$showposts = -1; // -1 shows all posts
$do_not_show_stickies = 1; // 0 to show stickies
$args=array(
'category__in' => $cat,
'posts_per_page' => $showposts,
'caller_get_posts' => $do_not_show_stickies,
'order' => 'asc'
);
$my_query = new WP_Query($args);
?>
<?php if( $my_query->have_posts() ) : ?>
<?php while ($my_query->have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="date">
<span class="month"><?php the_time('M') ?></span>
<span class="day"><?php the_time('j') ?></span>
<span class="year"><?php the_time('Y') ?></span>
</div>
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'elegant-grunge'), get_the_title()); ?>"><?php the_title(); ?></a></h3>
<?php if ( get_option("show_author") ) : ?>
<div class="author"><?php the_author() ?></div>
<?php endif ;?>
<!-- <div class="info">by <?php the_author() ?></div> -->
<div class="entry">
<small><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'elegant-grunge'), get_the_title()); ?>"><?php the_excerpt(__('Continue reading', 'elegant-grunge')); ?></a></small>
</div>
<div class="clear"></div>
<p class="metadata">
<?php comments_popup_link(__('no comments', 'elegant-grunge'), __('1 comment', 'elegant-grunge'), __('% comments', 'elegant-grunge')); ?>
<!-- <?php the_tags(' | '.__('tags:', 'elegant-grunge').' ', ', ', ''); ?> -->
<?php if ( count(($categories=get_the_category())) > 1 || $categories[0]->cat_ID != 1 ) : ?>
| <?php _e('posted in', 'elegant-grunge')?> <?php the_category(', ') ?>
<?php endif; ?>
<?php edit_post_link(__('Edit', 'elegant-grunge'), ' | ', ''); ?>
</p>
</div>
<div class="hr"><hr /></div>
<?php endwhile; ?>
<div class="navigation">
<div class="next"><?php next_posts_link(__('« Older Entries', 'elegant-grunge')) ?></div>
<div class="previous"><?php previous_posts_link(__('Newer Entries »', 'elegant-grunge')) ?></div>
</div>
<?php else : ?>
<h2 class="center"><?php _e('Not Found', 'elegant-grunge') ?></h2>
<p class="center"><?php _e('Sorry, but you are looking for something that isn\'t here.', 'elegant-grunge') ?></p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php if ( get_option('page_setup') != 'no-sidebar' ) get_sidebar(); ?>
</div>
<div class="clear"></div>
</div>
<?php get_footer(); ?>