How would I do a query for only sticky posts?
thanks, I need this answer for my Wp
Build a query something like this:
query_posts(array('post__in'=>get_option('sticky_posts')));
and then just loop the posts.
How would I do a query for only sticky posts?
thanks, I need this answer for my Wp
Build a query something like this:
query_posts(array('post__in'=>get_option('sticky_posts')));
and then just loop the posts.