Show an unlimited list of linked titles within a term from a custom post type's taxonomy
<?php query_posts( array( 'post_type' => 'videos', 'video_type' => 'Comedies', 'posts_per_page' => '9999999', 'orderby' => 'title', 'order' => ASC ) ); ?>
<?php if( is_tax() ) {
global $wp_query;
$term = $wp_query->get_queried_object();
}
?>
<ul class="video-list">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; else: ?>
<?php endif; wp_reset_query(); ?>
</ul>
This is a little snip of code that will let you query posts within a custom post type's taxonomy and show just a list of titles from one of the terms you add to your taxonomy.
In this example I created a new custom post type of "Videos". I attached the taxonomy of "Video Type" to this custom post type, from within "Video Type" we can then drill down and query a specific term within the taxonomy, in this example "Comedies".
What displays is a standard unordered list, in alphabetical order by title with the linked titles to the posts. If you want to get fancier you can display thumbnails, excerpts, etc.





