我如何在存档页面中显示我想要的帖子数量

时间:2012-09-27 作者:Batman

如何在存档主题板(帖子类型)页面中显示多篇帖子,

假设我想显示20个帖子。。。。在存档页面中,在“我想显示页面”下。。。

请看这里:

http://cinema.trancelevel.com/trailer/aventuri/page/2/

我使用post类型页面。。。所有存档页现在都显示12 post。。

我想能够显示一个数字。。。

比如说20篇预告片的帖子-对于预告片类别,比如10篇actori的帖子-对于actori类别。。。

现在我使用:

<?php is_tag(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
提前感谢

1 个回复
最合适的回答,由SO网友:kaiser 整理而成

只需使用current_post 循环中的属性:

if ( have_posts() )
{
    while( have_posts() )
    {
        global $wp_query;
        the_post();

        // Show current post number:
        echo $wp_query->current_post;

    } // endwhile;
} // endif;

结束