Sticky posts doesn’t work on query_posts?
-
I have the following code:
<?php $sixt_id = get_catId("Blog"); $sixt_id .= ",".get_catId("Featured"); $sixt_id .= ",".get_catId("Premium"); query_posts("showposts=6&cat=".$sixt_id); if (have_posts()) : while (have_posts()) : the_post(); echo get_the_title(); endwhile; endif; ?>
On featured category I have a sticky post, but doesn’t show up in front, why?
- The topic ‘Sticky posts doesn’t work on query_posts?’ is closed to new replies.