簡體   English   中英

每頁的Wordpress限制帖子分頁

[英]Wordpress limit posts per page with pagination

我想用最近的帖子和分頁創建博客頁面。 下面的代碼顯示了最近的帖子,但分頁不起作用。

<?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(); ?>

numberposts=6替換為post_per_page ,讓我知道它是否有效。

<?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 -->

我試過了

<?php get_header(); ?>
<div class="container clearfix">
   <div id="content" class="clearfix">
<?php
      $args = array( 'post_per_page' = -1 );

      $query= new WP_Query( $args );
      var_dump( $query );
      // The 2nd Loop
      while ( $query->have_posts() ) {
          $query->the_post();
          echo '<li>' . get_the_title( $query->post->ID ) . '</li>';
      }

      // Restore original Post Data
      wp_reset_postdata();        
    ?>
<div class="vertical"></div>
   <div class="sidebar">
     <?php get_sidebar(); ?>
   </div>
</div>
<?php wp_pagenavi(); ?>
<?php get_footer(); ?>

但它顯示空白頁。

編輯:這是我所做的:

<?php get_header(); ?>
<div class="container clearfix">
<div id="content" class="clearfix">
<?php
$args = array( 'post_per_page' = -1 );
$query= new WP_Query( $args );
var_dump( $query );
wp_reset_postdata();
?>
<div class="vertical"></div>
<div class="sidebar">
<?php get_sidebar(); ?></div>
</div>
<?php wp_pagenavi(); ?>
<?php get_footer(); ?>

它顯示一個空白頁。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM