如何将每个站点的分页 ps限制为20个帖子。我在内容-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; ?>发布于 2016-01-07 00:04:08
您可以在wp管理员中这样做:
转到设置菜单上阅读,然后更改每页的帖子。
https://stackoverflow.com/questions/34644178
复制相似问题