很可能你在那里有一个粘帖。如果你想要确切的帖子数量,你需要忽略粘性帖子。因此,您的查询应该如下所示:
query_posts( array(
\'orderby\' => \'rand\',
\'posts_per_page\' => 1,
\'ignore_sticky_posts\' => 1,
) );
或者按照建议,不要使用
query_posts()
$query = new WP_Query( array(
\'orderby\' => \'rand\',
\'posts_per_page\' => 1,
\'ignore_sticky_posts\' => 1,
) );