我有一个网站,它使用类别将帖子输出到类别中。php。我没有使用single的单帖。php
我需要的是一个网站访问者正在查看的类别中的“下一个10”/“前10个”链接。这是我的分类代码。php
<?php if (is_category(\'black-metal\')) : ?>
<h2><img src="<?php bloginfo(\'template_directory\'); ?>/assets/img/black-metal-h2.png" alt="Black Metal" /></h2>
<?php $catquery = new WP_Query( \'cat=2&posts_per_page=10\' ); ?>
<?php while($catquery->have_posts()) : $catquery->the_post(); ?>
<?php the_content(); ?>
<h3><?php the_title(); ?></h3>
<?php endwhile;
wp_reset_postdata();
?>
<?php elseif (is_category(\'death-metal\')) : ?>
<?php $catquery = new WP_Query( \'cat=3&posts_per_page=10\' ); ?>
<h2><img src="<?php bloginfo(\'template_directory\'); ?>/assets/img/death-metal-h2.png" alt="Death Metal" /></h2>
<?php while($catquery->have_posts()) : $catquery->the_post(); ?>
<?php the_content(); ?>
<h3><?php the_title(); ?></h3>
<?php endwhile;
wp_reset_postdata();
?>
例如,如果有人在看黑色金属类别,我希望该特定类别的下10个/前10个链接。
希望这是有意义的。我做了很多搜索,但没有找到答案。