Limited Featured Slider by Category
Hi,
I've just bought this theme and am spending time modifying it now to suit my site.
I'm having a bit of trouble working out how to limit post querys by ad category. I know how to do this for standard wordpress posts but I'm struggling to get it to work for ads.
The start of the featured code is this:
Code:
<?php query_posts( array('post__in' => get_option('sticky_posts'), 'post_type' => APP_POST_TYPE, 'post_status' => 'publish', 'orderby' => 'rand') ); ?>
I assumed you would just add a limiter such as category or cat_id etc and use the numerical category id but I can't get anything to work... I've tried this:
Code:
<?php query_posts( array('post__in' => get_option('sticky_posts'), 'post_type' => APP_POST_TYPE, 'post_status' => 'publish', 'orderby' => 'rand', cat_id' => 'xx') ); ?>
but it's not limiting it... Any help would be much appreciated!
Matt