Settings not working
-
My WP-paginate setting: Page Range, page anchors etc are not working. The pagination is working well, but when there are a hight number of pages in the pagination it goes on to 2 lines. I am using a ‘page’ for a home page and index.php is the main blog posts list page. I am using the following query:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;query_posts('cat=-9,-8&posts_per_page=1&paged=' . $paged); ?>
And even tried over riding the setting with
<?php if(function_exists('wp_paginate')) {wp_paginate('range=2&anchor=2');} ?>
Thanks in advance for your help.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Settings not working’ is closed to new replies.