Quote:
I think the first post would HAVE to be sticky, since I’m not sure there is a conditional to test for if it’s the first post. But, I know we can conditionally test if it is a sticky.
There is, but not exactly a conditional function. There’s a global variable called $wp_query which contains the current index of posts in a loop, among a whole lot of other things.
Try doing this in the posts loop to see what value it contains:
<?php global $wp_query; echo $wp_query->current_post; ?>