hi esmi,
I've referenced that page a few times, its been very helpful, but this time, I'm unsure about how to join current category & is sticky into a query. eg:
$current_category = category ID in a variable
<?php array=$sticky(
caller_get_posts=1,
post__in => $current_category && get_option("sticky_posts"),
posts_per_page=1
);
?>
<?php array=$sticky(
caller_get_posts=1,
post__in => array($current_category, 'sticky_posts';),
posts_per_page=1
);
?>
?<php query_posts('caller_get_posts=1&posts_per_page=1&category=$current_category&get_option("sticky_posts")'); ?>
They either come back blank, or pull all the posts across the board marked with sticky. I know I'm combining things improperly, I am just unsure of the proper way to do it. Sorry for the questions....the combining of items always gets me in WP. :)
Or maybe there's a way to use is_sticky() ?
_n