我正在使用wp_get_archive()
在里面category.php
.
如果我在第页,共页category=2
它应该只显示我的那个类别的档案。然而,它适用于所有类别。
那么如何更改wp_get_archive()
它只重定向到该特定类别的存档模板category.php
<?php get_header(); ?>
<?php
$args =array(
\'posts_per_page\' =>1,
);
$loop = new WP_Query( $args );
if($loop->have_posts()):while ( $loop->have_posts() ): $loop->the_post();
the_content();
endwhile;
endif;
?>
<?php wp_get_archives( array( \'type\' => \'daily\') ); ?>
如果相同的代码archive.php