List Recent Post Titles from Custom Taxonomies?

create additional loops in your template, selecting the taxonomy and term you’d like to limit display to for each. for instance, this will pull the last 5 posts from taxonomy “genre”, term “action”:

<?php

$args = array( 'taxonomy'=>'genre','term'=>'action','posts_per_page'=>5 );
$action_films = new WP_Query( $args );

while( $action_films->have_posts() ) : $action_films->the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;

?>