Support » Fixing WordPress » Next Page Not Working

  • Hi my “next page” is not working jobsinbaguio.com . I have a lot of job post and it’s divided to several pages because it’s too long. But I can’t access those pages. Is there a way for me to fix this?

Viewing 1 replies (of 1 total)
  • Thread Starter Jam Castro

    (@jam-castro)

    Here’s what I have in my page.php

    <?php get_header(); ?>
    
    	<div class="section">
    
    		<div class="section_content">
    
    			<?php appthemes_before_page_loop(); ?>
    
    			<?php if (have_posts()) : ?>
    
    				<?php while (have_posts()) : the_post(); ?>
    
    					<?php appthemes_before_page(); ?>
    
    					<?php appthemes_before_page_title(); ?>
    
    					<h1><?php the_title(); ?></h1>
    
    					<?php appthemes_after_page_title(); ?>
    
    					<?php appthemes_before_page_content(); ?>
    
    					<?php the_content(); ?>
    
    					<?php appthemes_after_page_content(); ?>
    
    					<?php appthemes_after_page(); ?>
    
    				<?php endwhile; ?>
    
    				<?php appthemes_after_page_endwhile(); ?>
    
    			<?php else: ?>
    
    				<?php appthemes_page_loop_else(); ?>				
    
    			<?php endif; ?>
    
    			<?php appthemes_after_page_loop(); ?>
    
    			<div class="clear"></div>
    
    		</div>
    
    	</div>
    
    	<?php if (comments_open()) comments_template('/comments-page.php'); ?>
    
    	<div class="clear"></div>
    
    </div><!-- end main content -->
    
    <?php if (get_option('jr_show_sidebar')!=='no') get_sidebar('page'); ?>
    
    <?php get_footer(); ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Next Page Not Working’ is closed to new replies.