Only ever shows 1 page when clearly more page are available.
Wordpress 3.2.1
Only ever shows 1 page when clearly more page are available.
Wordpress 3.2.1
probably not the fault of the plugin, but of some custom query in the template, without the 'paged' parameter.
if the problem is with the front page, have a look into index.php (?)
otherwise look into archive.php or category.php;
and please post more details, such as the theme you are using, and a link to your site.
Hello i am trying to use pagenavi plugin in this site http://www.edwardodaniel.com/ but i install the plugin and there is nothing in the footer. How can i solve it?
See if this plugin fixes the problem:
http://www.iwebss.com/wordpress/316-permalinks-categories-page-navigation-paging-problem-fix
Hey,
I found the solution for this problem:
instead of using:
$paged = get_query_var('paged') ? get_query_var('paged') : 1;
use:
if ( get_query_var('paged') ) {
$paged = get_query_var('paged');
} elseif ( get_query_var('page') ) {
$paged = get_query_var('page');
} else {
$paged = 1;
}
or (shortway):
$paged = ( get_query_var('paged') ) ? get_query_var('paged') :
( get_query_var('page') ) ? get_query_var('page') : 1;
You must log in to post.