[a-z-listing]
<ul>
<?php
global $post;
$args = array( 'numberposts' => 10, 'cat' => 31 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>