我正在使用query_posts
要从单个类别构建帖子列表,我正在尝试将分页添加到此设置中。这是我的代码:
<ul>
<h1><?php the_title(); ?></h1>
<?php
$paged = get_query_var( \'paged\' );
$args = array( \'posts_per_page\' => 5, \'category\' => 6, \'order\' => \'DESC\', \'paged\' => 1 );
$myposts = query_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
<li>
<strong><?php the_title(); ?></strong>
<?php the_content(); ?>
</li>
<?php endforeach;
wp_reset_postdata();?>
</ul>
<?php echo next_posts_link()?>
<?php echo next_posts_link()?>
生成“下一页>>”链接,链接到当前URL
&paged=2
追加,但单击时不执行任何操作(不会加载任何页面)。
如何进行工作分页?