这可以通过拇指投票对帖子进行正确排序(GD star rating 插件):
<?php query_posts(\'gdsr_sort=thumbs&post_type=bbp_reply&posts_per_page=2&post_parent=\'.$post->ID); ?>
<?php while ( have_posts() ) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
但这根本无法对它们进行排序:
<?php $custom_posts = new WP_Query(); ?>
<?php $custom_posts->query(\'gdsr_sort=thumbs&post_type=bbp_reply&posts_per_page=2&post_parent=\'.$post->ID); ?>
<?php while ($custom_posts->have_posts()) : $custom_posts->the_post(); ?>
<div class="content-block-2">
<?php bbp_reply_author_link( array( \'type\' => \'avatar\' ) ); ?>
<?php bbp_reply_author_link( array( \'type\' => \'name\' ) ); ?>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( \'Permalink to %s\', \'twentyten\' ), the_title_attribute( \'echo=0\' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
<?php the_content(); ?>
</div>
<?php endwhile; ?>