Here’s my loop-page.php code. It’s formatted the same way as my other site where the <!–nextpage–> tag works fine which is what’s so confusing. . .
?>
<div id="container">
<div class="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="content-title">
<h1><?php the_title(); ?></h1>
<small><?php the_category(', '); ?> on <?php the_time('F j, Y'); ?> at <?php the_time(); ?> by <?php the_author_posts_link() ?></small>
</div><!--End Date-->
<?php the_content(); ?>
<?php wp_link_pages(); ?>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>