Re: adding content to the 1.2 default theme homepage
Actually… I take that back. My solution above does not work because the posts will not be paginated. I also tried this within my “Archives” custom template:
<?php query_posts('posts_per_page=5'); ?>
<?php if ( have_posts() ) : ?>
<?php next_posts_link() ?>
<?php previous_posts_link() ?>
<?php while ( have_posts() ) : the_post(); ?>
<!-- Posts Loop Here -->
<?php endwhile; ?>
<?php endif; ?>
Same problem. Posts don’t paginate. Maybe because they are on a regular page instead of the homepage. This just worked before. I could go to / (home.php) and /blog/ (index.php). Argh.