Support » Fixing WordPress » Older Entries Link Resulting In Blank Page

  • If you go to freesamplesbymail.tv and scroll to the bottom you will see a link called ‘Older Entries’ — I have no idea why when this is clicked it points to a blank page…I’m fairly WordPress savvy and I know php so if anyone can provide me with a fix for this problem I would GREATLY appreciate it!

    Thanks in advance,
    Jason

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Jason M

    (@ep0ch)

    Here’s what lies within index.php relative to this problem I’m having:

    <?php if (function_exists('page_navi')) { // if expirimental feature is active ?>
    
    						<?php page_navi(); // use the page navi function ?>
    
    					<?php } else { // if it is disabled, display regular wp prev & next links ?>
    						<nav class="wp-prev-next">
    							<ul class="clearfix">
    								<li class="prev-link"><?php next_posts_link(__('&larr; Older Entries', 'frantic')) ?></li>
    								<li class="next-link"><?php previous_posts_link(__('Newer Entries &rarr;', 'frantic')) ?></li>
    							</ul>
    						</nav>
    					<?php } ?>		
    
    					<?php else : ?>
    
    					<article id="post-not-found">
    					    <header>
    					    	<h1><?php _e('Not Found', 'frantic'); ?></h1>
    					    </header>
    					    <section class="post_content">
    					    	<p><?php _e('Sorry, but the requested resource was not found on this site.', 'frantic'); ?></p>
    					    </section>
    					    <footer>
    					    </footer>
    					</article>
    
    					<?php endif; ?>
    Thread Starter Jason M

    (@ep0ch)

    Solved. Plugin related.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Older Entries Link Resulting In Blank Page’ is closed to new replies.