我正在创建一个自定义主题,我正在努力使分页在我的归档文件中工作。php模板。
我试图修改我在博客主页上使用的代码,但它只是显示所有的博客文章,而不仅仅是那些带有特定标签或类别的文章。
知道我哪里出了问题,以及如何获取档案吗。php模板在分页时应如何工作?
提前感谢,
汤姆
<?php get_header(); ?>
<!-- PAGE INTRODUCTION -->
<div class="container">
<h1 class="page_title"><?php the_archive_title(); ?></h1>
</div>
<!-- PAGE CONTENTS -->
<div class="container">
<div class="row">
<?php
$paged = ( get_query_var(\'paged\') ) ? get_query_var(\'paged\') : 1;
$custom_args = array(
\'post_type\' => \'post\',
\'posts_per_page\' => 10,
\'paged\' => $paged
);
$custom_query = new WP_Query( $custom_args );
?>
<?php if( $custom_query->have_posts() ) : while( $custom_query->have_posts() ) : $custom_query->the_post(); ?>
<div class="item">
<h3><?php the_title(); ?></h3>
<a href="<?php the_permalink(); ?>">Read more</a>
</div>
<?php endwhile; endif; wp_reset_postdata(); ?>
</div>
<!-- PAGINATION -->
<?php
if (function_exists(custom_pagination)) {
custom_pagination($custom_query->max_num_pages,"",$paged);
}
?>
</div>
<?php get_footer(); ?>