我为一个类别创建了一个定制的php页面,希望将每页帖子的最大限制限制为5篇,并具有next和prev按钮。有人能帮忙吗?
<?php
/**
* Video Template
*/
get_header(); ?>
<section id="primary" class="site-content">
<div id="content" role="main">
<?php
// Check if there are any posts to display
if ( have_posts() ) : ?>
<header class="archive-header">
<h1 class="archive-title">Videos list<?php single_cat_title( \'\', false ); ?>
</h1>
<?php
// Display optional category description
if ( category_description() ) : ?>
<div class="archive-meta"><?php echo category_description(); ?></div>
<?php endif; ?>
</header>
<?php
// The Loop
while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link
to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<small><?php the_time(\'F jS, Y\') ?></small>
<?php the_content(); ?>
</div>
<?php endwhile;
else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
</section>
<?php get_footer(); ?>