duanlaiquan8174 2015-11-17 07:47
浏览 58

WordPress限制每页分页的分页

I want to create blog page with recent posts and pagination. Code below shows recent posts but pagination doesn't want to work.

<?php get_header(); ?>
<div class="container clearfix">
<div id="content" class="clearfix">
<?php
   $postslist = get_posts('numberposts=-1&posts_per_page=5&order=DESC&orderby=date');
         foreach ($postslist as $post) :
            setup_postdata($post);
?>
<div class="entry">
    <div class="recent-post-thumbnail">
        <?php echo the_post_thumbnail($recent->ID, 'thumbnail'); ?>
    </div>
    <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
    <?php the_excerpt(); ?>
    <h4><a href="<?php the_permalink(); ?>">More ></a></h4>
</div>
<?php endforeach; ?>
</div> <!-- end content -->
<div class="kreska-pion"></div>
<div class="sidebar">
    <?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>
  • 写回答

2条回答 默认 最新

  • doucan8276 2015-11-17 09:08
    关注

    numberposts=6 replace this with post_per_page and let me know if It worked .

    <?php
        $postlist = get_posts( 'numberposts=-1&posts_per_page=5' );
        $posts = array();
        foreach ( $postlist as $post ) {
           $posts[] += $post->ID;
        }
    
        $current = array_search( get_the_ID(), $posts );
        $prevID = $posts[$current-1];
        $nextID = $posts[$current+1];
        ?>
        <?php
        foreach ( $posts as $post ) : setup_postdata( $post ); ?>
            <li>
                <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
            </li>
        <?php endforeach; 
        wp_reset_postdata();?>
        <div class="navigation">
        <?php if ( !empty( $prevID ) ): ?>
        <div class="alignleft">
        <a href="<?php echo get_permalink( $prevID ); ?>"
          title="<?php echo get_the_title( $prevID ); ?>">Previous</a>
        </div>
        <?php endif;
        if ( !empty( $nextID ) ): ?>
        <div class="alignright">
        <a href="<?php echo get_permalink( $nextID ); ?>" 
         title="<?php echo get_the_title( $nextID ); ?>">Next</a>
        </div>
        <?php endif; ?>
        </div><!-- .navigation -->
    
    评论

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类