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)
Maybe something like this...?Code:<?php $custom_query = new WP_Query('post_type=news&posts_per_page=4'); while($custom_query->have_posts()) : $custom_query->the_post(); ?>
Code:<?php $loop = new WP_Query( array( 'post_type' => 'news', 'posts_per_page' => 5 , 'taxonomy'=>'slideshow') ); ?> <?php while ( $loop->have_posts() ) : $loop->


LinkBack URL
About LinkBacks
Reply With Quote