后循环中的分页。 WordPress的

时间:2016-01-06 22:36:40

标签: wordpress loops pagination posts

如何限制每个网站20个帖子分页 PS。我在content-postarchives.php

中做了这个
<?php
$args = array( 'posts_per_page' => 20 );
$the_query = new WP_Query( $args );?>
<?php if ( $the_query->have_posts() ) : ?>
  <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
    <li>
    <h4><a class="text_aktualnosci" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
        <span class="data_dodania_arch"><?php _e('Data dodania: '); ?><strong><?php echo get_the_date(); ?></strong></span>
    </h4>
    </li>
  <?php endwhile; ?><!-- end of the loop -->
  <!-- put pagination functions here -->
<?php else:  ?>
<p><?php _e( 'Przepraszamy, brak aktualności' ); ?></p>
<?php endif; ?>

1 个答案:

答案 0 :(得分:0)

你可以在wp admin:

中完成

去阅读设置菜单 然后每页更改帖子。