我创建了一个自定义页面模板(testimonials-page.php),并在该模板中使用以下循环加载自定义帖子类型“testimonials”:
<?php query_posts(array(
'posts_per_page' => 5,
'post_type' => 'testimonials',
'orderby' => 'post_date',
'paged' => $paged
)
); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="quote">
<?php echo get_the_post_thumbnail($id, array($image_width,$image_height)); ?>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
我该如何添加分页呢?我安装了 WP Paging 插件,当我使用以下方法将分页调用到 category.php 时,该插件工作得很好:
<p><?php wp_paging(); ?></p>
将相同的内容插入 testimonial-page.php 会导致格式损坏并链接到我的 404。