Hi,
I'm trying to get the first x number of stickies and I can't find a way to make it work.
First off, the most commonly listed method doesn't work:
$sticky=get_option('sticky_posts') ;
query_posts('p=' . $sticky[0]);
As far as I can tell, the array returned by get_option doesn't come back in the correct order, thus not returning the first sticky when you use it to call query posts with the 0 item.
Secondly, numberposts with get_posts and showposts with query_posts does not appear to work for this, either.
Thanks.