您可以通过将其放置在要显示列表的位置来完成此操作:
<ul>
<?php
global $post;
$args = array( \'numberposts\' => 10, \'offset\'=> 1, \'category\' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
在这里,您只需将类别ID替换为所需的类别ID。`\'category=>1,仅此而已