How to get bbpress sticky topics
I want to get bbpress sticky topics using query like this:
$sticky = get_option('sticky_posts');
rsort( $sticky );
$sticky = array_slice( $sticky, 0, 2);
query_posts( array( 'post__in' = $sticky, 'caller_get_posts' = 1, 'post_type'= 'topic' ) );
if (have_posts()) :
while (have_posts()) : the_post();
//do something
endwhile;
endif;
How can i make query something like this work?
Topic theme-thesis bbpress sticky-post Wordpress
Category Web