• Hello guys and gals. On a test website, before I transition my main site, I’m running into an issue. At the bottom of my page, I don’t have a Next page button. Now I’ve imported my previous site which has nearly a 1,000 posts so I know that it’s not an issue of lack of posts.

    My code currently read:

    <?php get_header(); ?>

    <div id=”main” class=”clearfix”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”post clearfix” id=”post-<?php the_ID(); ?>”>

    <h1 class=”entry-title”><?php the_title(); ?></h1>

    <div class=”entry-content”>
    <?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>

    <?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
    </div><!– END: .entry-content –>

    </div><!– END: #post-<?php the_ID(); ?> –>
    <?php endwhile; endif; ?>

    </div><!– END: #main –>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    So I feel like it’s there but no go. Any help would be welcomed. My test site is https://www.sonyrumorsnetwork.net

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Missing Next Page’ is closed to new replies.