在WordPress主题中的Paginate帖子

时间:2011-05-03 02:52:43

标签: php wordpress pagination

好吧,我现在已经盯着这近一个小时了,无法让它发挥作用。我正在使用WordPress,我在系统中有12个帖子。在管理员中,我将其设置为每页显示5个帖子。在我的主题中,我试图在底部显示分页(prev,1,2,3,4,next)。我在WordPress指南上找到了paginate_links()函数,它没有打印任何内容...感谢任何帮助:

<?php get_header(); ?>
<div class="middle-container">
    <div class="middle">
        <div class="column main">
            <div class="latest">
            <?php
            $i = 0;
            if (have_posts()):
                while (have_posts() && $i < 1):
                    the_post();
                    ?>
                    <div class="image"><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_post_thumbnail(); ?></a>
                    </div>
                    <div class="content">
                    <h1><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
                    <span class="date"><?php the_time('F jS, Y') ?></span>
                    <?php
                    the_excerpt();
                    ?>
                    </div>
                    <?php
                    $i++;
                endwhile;
            endif;
            ?>
            </div>
            <ul class="posts">
            <?php
            $i = 0;
            if (have_posts()):
                while (have_posts() && $i < 4):
                    the_post();
                    ?>
                    <li>
                    <h2><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
                    <span class="date"><?php the_time('F jS, Y') ?></span>
                    <?php
                    the_excerpt();
                    ?>
                    </li>
                    <?php
                    $i++;
                endwhile;
            endif;
            ?>
            </ul>
            <?php
            echo paginate_links();
            ?>
        </div>
        <div class="column sidebar"></div>
    </div>
</div>
<?php get_footer(); ?>

关于此的更多背景:代码中的第一个while循环抓取列表中的第一个帖子并将其显示在自己的特殊块中。第二个while循环抓住剩余的4个帖子。这两个while循环都可以完美地运行。分页只是不打印出来。

2 个答案:

答案 0 :(得分:1)

似乎Wordpress paginate_links函数需要一个参数。

我会尝试他们的默认示例,看看它是否有效。

<?php
paginate_links(array(
    'base'         => '%_%',
    'format'       => '?page=%#%',
    'total'        => 1,
    'current'      => 0,
    'show_all'     => False,
    'end_size'     => 1,
    'mid_size'     => 2,
    'prev_next'    => True,
    'prev_text'    => __('&laquo; Previous'),
    'next_text'    => __('Next &raquo;'),
    'type'         => 'plain',
    'add_args'     => False,
    'add_fragment' =>  ));
?>

答案 1 :(得分:0)

找到我的解决方案的答案。如果将“total”保留为1,则该函数不执行任何操作。您必须将页面数量放在“total”参数中。我认为WordPress足够智能,可以使该功能从该集合中获取帖子的数量......

无论如何 - 正在寻找不需要大量自定义代码(如paginate_links)的分页功能的其他人,请查看: http://wordpress.org/extend/plugins/wp-paginate/

似乎工作得很好。