如果你能接受手动决定你最好的帖子是什么,Sticky Posts 这将是我选择的方式。
Codex已经有了5条最新粘性帖子的代码:
/* Sort Sticky Posts, newest at the top */
rsort( $sticky );
/* Get top 5 Sticky Posts */
$sticky = array_slice( $sticky, 0, 5 );
/* Query Sticky Posts */
$query = new WP_Query( array( \'post__in\' => $sticky, \'ignore_sticky_posts\' => 1 ) );
?>