Quantcast
Channel: Topic Tag: footer | WordPress.org
Viewing all articles
Browse latest Browse all 13547

alchymyth on "The /page/2 is not working properly"

$
0
0

in the page/2/ there is some excess code before the posts:

<div class="entrydate">

					<div class="page-title">

						<h4>Page 2 of 2</h4>

					</div>

					<div class="clear"></div>

check index.php for any conditional stuff related to paginated pages...

the original section should be:

if ( "1" < $paged ) : ?>

					<div class="page-title">

						<h4><?php printf( __('Page %s of %s', 'hemingway'), $paged, $wp_query->max_num_pages ); ?></h4>

					</div>

					<div class="clear"></div>

				<?php endif; ?>

if you have done any edits to index.php, revert back to the original code, for instance from https://themes.svn.wordpress.org/hemingway/1.44/index.php

if you need more help, it might be better if you post in your theme's forum at https://wordpress.org/support/theme/hemingway/


Viewing all articles
Browse latest Browse all 13547

Trending Articles