Hi, I have a custom post and category. This is my post query code:
query_posts( array(
‘post_type’ => ‘CUSTOM_POST’,
‘taxonomy’=>’CUSTOM_CAT’,
‘term’ => ‘cat_slug’,
‘nopaging’ => TRUE
) );
————
Then y just use de normal LOOP
if ( have_posts() ) { while ( have_posts() ) { …………..
Cheers!