I am using WP 3.0.3 and I would like to exclude sticky posts from my query:
This doesn’t seem to work:
<?php query_posts( 'posts_per_page=9&cat=-1,-2&ignore_sticky_posts=1' );?>
To get JUST the sticky post I use the following:
$sticky = get_option('sticky_posts');
$args = array(
'posts_per_page' => 1,
'post__in' => $sticky
);
query_posts($args);