添加1每次显示查询

时间:2012-09-06 01:55:38

标签: php wordpress

我有一个查询,在我的博客上获得评价最高的5个内容我怎么能这样做,所以每个帖子显示的查询1被添加到$ number变量?

基本上我想要的是给予评分最高的内容一个1-5之间的数字,第一个获得1,第二个获得2,第三个获得3,依此类推。

<?php ( query_posts('category_name=music&showposts=3&orderby=comment_count&order=desc&post_status=future,publish') ) ; ?>


<?php while ( have_posts() ) : the_post(); ?>

<?php endwhile; ?>

<?php wp_reset_query(); ?> 

1 个答案:

答案 0 :(得分:0)

试试这个 - 只需将$ number设置为0然后使用++来增加数字

<?php ( query_posts('category_name=music&showposts=3&orderby=comment_count&order=desc&post_status=future,publish') ) ; ?>


<?php $number=0; while ( have_posts() ) : the_post(); $number++; ?>

Rated #<?= $number ?>

<?php endwhile; ?>

<?php wp_reset_query(); ?>