Adds a more advanced paging navigation interface.
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
3answers
3k views
WP-PageNavi gives me a 404 when using WP Query
I see that there are a lot of similar questions here at WPSE, and I've tried many of the suggestions mentioned trying to solve my problem but with no success.
I have a category called News. In this ...
1
vote
3answers
941 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 ...
2
votes
1answer
324 views
Page navigation doesn't show when query category
Problem:
when I do www.example.com?cat=4 or choose category through custom menu or from category widget it shows only first page without navigation at the bottom, where it supposed to be. It's the ...
0
votes
1answer
164 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 ...
1
vote
0answers
52 views
Insert a “view all ” option on wp page navi
Is it possible to/how can I add a view all function to my wp-pagenavi?
For example :
1 2 3 >> View All >>
Currently I just have the 1 2 3 >> but would like to give my visitors to option to 'View ...
0
votes
0answers
14 views
How do I sort multiple pages? [duplicate]
Possible Duplicate:
How do I sort multiples pages?
I would like my users to be able to sort a list of posts with a drop-down. But I'm having problems because the results are on multiple ...
0
votes
1answer
96 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 ...
1
vote
2answers
81 views
How do I sort posts with multiple pages
I am using a drop-down to sort posts by title, meta_value, etc. However, the sorting feature only works on the first page. The second page displays the default order rather than continuing the order ...
5
votes
5answers
692 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
282 views
wp pagenavi not working with category id
Can someone let me know i am using wp pagenavi wordpress plugin
http://renegadehealth.com/blog/?cat=6708
When i click on the next button at the bottom the following link comes:-
...
0
votes
2answers
673 views
Wp PageNavi only works with default permalinks on a custom post type?
I have tried many solutions to no avail and really need some help.
I have a Custom Post Type named "Portfolio" that is setup to display it's contents on a page called Portfolio.php. Wp PageNavi is ...
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
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 ...
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
2answers
498 views
Sort custom posts in archive by multiple values: date AND meta key
I have a post type and I want to sort posts in its archive according to two values:
by a meta value called "artwork_year" which contains a 4 digit number (year)
by post publish date
what the query ...
0
votes
1answer
122 views
Need help getting this page nav working correctly
For some reason the page nav doesn't work correctly. It's styled odd on the home page (http://noahsdad.com/), then if you go to a page (say page 2 for instance, http://noahsdad.com/page/2/) you'll see ...
2
votes
1answer
672 views
Exclude Sticky posts from Main Query break Pagination
I have a small problem with this function ! I would like to exclude all sticky post from my query but when I do it, it breaks my pagination. In the following code, when I remove the "'post__not_in' => ...
0
votes
1answer
703 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 ...
0
votes
1answer
560 views
wp_pagenavi function parameters
I've been searching all around the web for the API of the wp_pagenavi plugin, but seems that I can't find one.
I just want to know: In examples that I found, the wp_pagenavi function has from 0 to 3 ...
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 not working on Custom page Template
this is my code in Custom page Template
<?php query_posts('showposts=8'); ?>
<?php
$count = 1;
if (have_posts()) : while (have_posts()) : the_post(); if($count == 1) : ?>
& ...
1
vote
1answer
387 views
Same posts from my homepage are on all of my different page
I see that you solved the problem of a WordPress user memo-maritime two years ago "Same posts from my homepage is on all of my different pages".The same problem i have.What should I do?I installed ...
0
votes
2answers
333 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 ...
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 ...
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
1k views
wp-pagenavi only showing first page
I'm trying to get pagination to work, I get the nav tools to show, but when i click to move to the next page it loads the first page every time. Here's the code:
<?php $args = array(
...
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 ...
