Btw, How to display only 5 sticky posts randomly, assumed I have 10 sticky posts, and I want to display only 5 sticky posts randomly.
I’ve used this code before:
<?php query_posts(array(‘post__in’=>get_option(‘sticky_posts’), ‘orderby’ => ‘rand’, ‘showposts’ => 5)); while (have_posts()) : the_post(); ?>
but it’s not work. What I get using this query is 10 sticky posts displayed, not 5 posts. ‘showposts’ isn’t work.