我对 Wordpress 开发很陌生。我有一个单页的代码,它只在无限循环中输出最新的帖子。随着同一篇文章被一次又一次地调用,页面变得越来越长。如何让它按顺序显示所有帖子?
<?php
/*
* Template Name: Portfolio
*/
?>
<?php include 'header.php'; ?>
<div id="content">
<div id="content_inner">
<!--start the loop -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!--get posts-->
<?php query_posts('cat=uncategorized') ?>
<!--display the content-->
<?php the_content(); ?>
<!--end the loop-->
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
</div>
<?php include 'footer.php'; ?>
</div> <!--end allwrap-->