I want to show post from a CPType, but more specifically, from a specific custom taxonomy of the CPType.
Here's my look as it stands (w/ the taxonomy)
<?php $loop = new WP_Query( array( 'post_type' => 'news', 'posts_per_page' => 5) ); ?>
Maybe something like this...?
<?php $loop = new WP_Query( array( 'post_type' => 'news', 'posts_per_page' => 5 , 'taxonomy'=>'slideshow') ); ?>
Thoughts?
Thanks.