Remove Sticky / Featured Attribute
Hi,
I have sticky posts showing up with different styling, I'd like to show the same posts on the home page without styling (so styling only happens in the category pages) - is there a query I can add to this?
query_posts(array('post_type' => 'ad_listing', 'caller_get_posts' => 1, 'paged' => $paged, 'orderby' => DESC, 'ad_cat' => 'parts', 'posts_per_page' => 8)); ?>
At the moment all i have is the below to remove stickies completely:
'post__not_in' => get_option("sticky_posts")
Thanks
Tom