0
votes
0answers
12 views

Pagination using wp-pagenavi not working [duplicate]

I use the plugin called wp-pagenavi to do pagination in my custom template. But it shows that only one page is available.I have 10 posts of a specific category. I want to show 3 posts per ...
0
votes
1answer
167 views

Pagination breaks on child-categories, works fine on parent-category

I have two parent categories, and pagination is working fine on them - the paged url's show as: /parent-category-1/page/2/ ... etc /parent-page/parent-category-2/page/2/ ... etc However, when I go ...
0
votes
1answer
98 views

How do I sort multiples pages?

I want to use a dropdown to sort a list of posts in WordPress. The results will display on multiple pages. So how do I pass the query on to the second, third, fourth, etc. pages? Here's an example of ...
5
votes
5answers
694 views

How can I make wp-pagenavi work on a custom query built upon a form submission?

I've also posted this on the wordpress support forums, for scribu's wp-pagenavi plugin: http://wordpress.org/support/topic/plugin-wp-pagenavi-custom-query-form-submit-part-2?replies=1 My situation: ...
0
votes
1answer
347 views

pagenavigation not showing the next page just linking back to the main page

Using this on my index.php <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> Using plugin: WP-PageNavi Wp Pagenavi Style Not sure what information you need to help me fix ...
0
votes
1answer
2k views

Wp-pagenavi giving page not found on clicking page 2

I'm getting a page not found when I click on page 2 using wp-pagenavi. This is my code, is there anything obvious there that's wrong? <div class="news-content-inner"> ...
0
votes
1answer
363 views

wp_pagenavi plugin settings - Previous and Next Post links not showing up [closed]

I have installed wp_pagenavi plugin and it is showing pagination and working fine. But only issue is in settings, I want to show "Previous Post" and "Next Post" Link in left-right of the numeric ...
0
votes
2answers
336 views

pagination links not displaying

I'm unable to get my 'next_posts_link()' and 'previous_posts_link()' to display. So far I've tried the standard first debug by deactivating all plugins and clearing the cache, I've also tried removing ...
0
votes
1answer
2k views

Paginating Custom Post Types with wp-pagenavi plugin [closed]

I have searched through this site and online foran answer to my problem and tried lots of different suggestions offered and nothing works - please help! I'm using the WP-PageNavi plugin. With the ...
2
votes
3answers
955 views

How to determine if I'm on the first page of pagination?

How do I determine if I'm on the very first page of pagination? I'm using WP_Pagenavi. I want to run a function only on the first page of the pagination. I checked the query_var 'paged', it's set to 0 ...
1
vote
0answers
637 views

Create pagination in the items list of specified custom taxonomy term [closed]

I've created list of custom taxonomy term and have problem with pagination. Custom post type "gallery" has his own custom taxonomy "gallery_category". The next loop lists all items of chosen Gallery ...
0
votes
1answer
704 views

Pagenavi Plugin and Custom Post Type - Multipage results

I having trouble with the results, the url and the pagination shows correctly, but when I'm on page 2 or 3 etc... there only show the results from the first page. this is my code. <?php ...
3
votes
1answer
2k views

How To create ajaxed wp-pagenavi?

I'm using WordPress as a Facebook platform and have a page that shows posts from 2 different categories. Each category has it's own pagination using wp-pagenavi. In order to stay in Facebook I need ...
2
votes
1answer
5k views

wp_pagenavi() with custom wp_query()?

<?php /* Template Name: Projects */ ?> <?php get_header();?> <section id="content"> <section id="main"> <?php $loop = new ...