Breaking up content into smaller-sized pages to be viewed individually

learn more… | top users | synonyms (1)

0
votes
0answers
15 views

Pagination won't go to page 2 [duplicate]

I've created a page which uses posts 2 posts and pagination The pagination will not go to page 2, every time I click the link it reloads the page, however hovering over the page two link shows the ...
0
votes
1answer
20 views

Pagination linking to first page

I have created a query which work correctly and displays the pagination correctly. However when clicking the links /products/category/application-range/page/2 the page will load and go back to ...
-1
votes
1answer
9 views

Multiple loop with pagination in same page

In my home page i have two <section> in which i perform two different loops on different post categories. Here the code: <section> <ul class="loop-article"> ...
0
votes
0answers
15 views

Pagination is not working on custom query

I have custom query with different conditions so that's why my pagination is not working with it. When i click on next button it show me the same posts. The query i am using are <?php $paged = ...
0
votes
1answer
38 views

Pagination and multiple loops

Right, so what I currently have is a page split into three using a css grid. The third column is the sidebar, The first two each have a query for posts to display, and create a nice grid of posts ...
0
votes
1answer
18 views

Pagination difficulty using custom query in genesis-based custom theme

I am creating a genesis child theme. I have a category called 'faculty' with about 60 posts in it. I am modifying the category template file so that it displays this category in a customized fashion. ...
0
votes
0answers
15 views

Pagination paginate_links() Not Working [duplicate]

Here's my code <?php query_posts(array('category_name'=>'nutrition','posts_per_page'=>'3','paged' => get_query_var('paged'))); while ...
0
votes
0answers
40 views

Loop not appending through infinite-scroll ajax call

I'm having trouble debugging why the InfiniteScroll jQeury plugin isn't loading more of my .boxy class items. So far I've placed the div containing the selectors in different levels of heirarchy, but ...
0
votes
0answers
18 views

Pagination work! But title still says “Page Not Found”

I'm using the following code: $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts('posts_per_page=3&&paged='.$paged); and then global $wp_query; $big = 999999999; ...
0
votes
0answers
21 views

Infinite Scroll Plugin: How to first show 6 posts and then 2 posts thereafter with Infinite Scroll Plugin?

I am using the Infinite Scroll Plugin and initially load 6 posts onto the page. After the user hits "Show More" which is the pagination buttons on the page, I would like for 2 posts to be displayed ...
0
votes
1answer
27 views

Pagination problem in custom post type used as front page

I am working on a theme with custom post type. the issue currently is that i am saving the layout files in a folder called templates.. and in front-page.php i am using an options check to see which ...
10
votes
1answer
130 views

Why do you need an unlikely integer in paginating?

The paginate_links Codex function reference has some sample code that's being reposted all over the net. It has a section that uses a variable called $big = 999999999; // need an unlikely integer: ...
0
votes
0answers
28 views

Archive Page Pagination not working

I am using the following template for a custom post type. The pagination does not work as you can see at http://www.xava.ie/testimonials Any hints as to why it is not working for me? <?php ...
0
votes
0answers
24 views

Search pagination not working

I have a search box in my header, which shows the results in a page called search.php. The search itself is working, but pagination is not. So when I click to go to the next page, the front-page.php ...
0
votes
1answer
30 views

AJAX pagination call to get_posts with an offset and a meta_value_num sort returns same post on adjacent pages

I have a simple AJAX pagination that seemed to work just fine, calling one Wordpress page (not ideal, I know) with a pagenum and a sort order arguments and it returned 4 custom posts per call. The ...
0
votes
0answers
22 views

Amend page title for Paginated pages, using All In One SEO

Our site has a large list of paginated pages for older blog posts, and we wish to modify the page title. Currently, it seems all we can do is append a string onto the end of the existing homepage ...
-1
votes
0answers
23 views

Childpages/Subpages Pagination on Parent page.? with next - previous and count

I'm trying to create pagination for child/subpages but its not working. I have to display a pagination in the header part of About Us page(It can be any page). Display format would be: Viewing ...
0
votes
1answer
17 views

how does offset works on Pagination? (get_results)

I followed this link and created my own custom query with pagination.. but I don't really understand how the offset works, Pagination with custom SQL query the pagination does not work well. and I'm ...
0
votes
0answers
33 views

Pagination not working on Posts page when Category base is set

My urls are like: /news (shows all posts) /news/category-name /news/category-name/some-post the rest of the site are pages like /about, /contact, etc. To make it work this way I've set Posts page ...
1
vote
2answers
41 views

How to use/enable Pagination?

I'm creating a shortcode to display the list of users with a particular profile in WordPress. But I can not enable or display the pagination. I have 25 users on my site and would like to display 5 ...
0
votes
1answer
52 views

Post archive pages bringing me to a 404 page

When I try to use next_posts_link() and previous_posts_link() in my archive posts page I got a 404 error page. I'm using this permalink setting /%category%/%postname% and working well for all pages ...
-3
votes
0answers
31 views

Pagination Issues

I've got a static home page with a wp_query for custom post type posts that need to be paginated. I'm using a page builder plugin to build the rest of the page. I'm using the following code but the ...
-2
votes
0answers
13 views

Pagination for custom post type on page template [duplicate]

Hello I am trying to add pagination to a page template which I am using to display a custom post type. I have looked around for a few hours but I haven't come across clear set of instructions to ...
1
vote
0answers
36 views

Post navigation not working [duplicate]

I'm having a strange issue on a blogpage that I'm working on. I have created an index.php page with a loop that display's only a specific category of posts. It also displays the next and previous ...
0
votes
0answers
45 views

get_query_var('paged') giving same result

I have a custom page, in that page i am using a custom select query for my search functionality. The problem is pagination not working. I used $on_page= get_query_var('paged'); for pagination. When ...
0
votes
0answers
41 views

Wordpress - ABC filter/Pagination

I would like to list out the alphabet on a custom post type archive page, and by clicking on a letter in the alphabet it would link to a url that only displays posts that begin with that particular ...
0
votes
0answers
27 views

The offset option breaks the pagination

I have a problem with a website of mine, I was hoping you can help me. I added the offset option to ignore the first couple of posts in the main loop. It does its job, but the navigation got broken. ...
0
votes
0answers
28 views

wordpress category page url permalink structure

My sites post permalink structure is "/%category%/%postname%". As default structure, permalink for categories are in this format "/category/%category%" . But, for some reason "{site_root}/%category%" ...
0
votes
1answer
32 views

How to change pagination base from slash to query form?

Can this function... function custom_pagination_base() { global $wp_rewrite; $wp_rewrite->pagination_base = 'p'; $wp_rewrite->flush_rules(); } add_action( 'init', 'custom_pagination_base' ); ...
0
votes
1answer
85 views

Pagination not working on home page

I've a page named "share" with a complex loop that's working perfectly. This page is located at domain.com/share. Now I need to use this page as the home page, so I went to "Settings -> Reading" and ...
0
votes
0answers
39 views

Post page shows another post type

I use http://www.kriesi.at/archives/how-to-build-a-wordpress-post-pagination-without-plugin for my blog pagination until I get a bug when I go through pages. On the 4th page when I output the ...
0
votes
0answers
31 views

Pagination not working on page

Edit : Toscho said this was a duplicated question and gave me a link Pagination not working with custom loop I checked it out and followed the steps but this is not working for me. Right now. when i ...
0
votes
0answers
145 views

Woocommerce products per page dropdown

I'm using the following code taken from here- http://designloud.com/how-to-add-products-per-page-dropdown-to-woocommerce/?showmodaldialog=1#comment-1554 to display a drop down selector so the user ...
0
votes
0answers
61 views

Classic Custom Post Types and WP-PageNavi

Has anyone made this work? I am searching for a solution for 2 days now, and it won`t work. I have... $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $updates = new WP_Query(array( ...
0
votes
1answer
102 views

Using loop pagination on single.php

I want the main front-page loop to show in a section on both index.php AND single.php templates, with pagination. Pagination works fine on the homepage, but not on single posts. This is the code ...
0
votes
0answers
37 views

WP-PageNavi for Pages as well as posts

I have installed wp_pagenavi to the latest version of WP using the Skirmish theme. I can get WP Pagenavi to work for posts, but I do not seem to be able to get it to work for pages. Pages show this ...
0
votes
0answers
25 views

Pages half/not working.

If someone could please look at our website and have a look it'd be really appreciated. On one of our catergoires (rentals>sconces) page one works fine, but the remaining 3 dont. ive read in a couple ...
0
votes
0answers
29 views

next_post_link() not working properly

I am using next_post_link() and previous_post_link() in single-custom.php to browse through post-type "custom". <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div ...
0
votes
0answers
29 views

Adjusting Pagination

I am currently try to fix some issues in the pagination on one of my client's sites. The code that was in place is: if (!function_exists('prime_pagination')) { function prime_pagination($args = ...
0
votes
0answers
27 views

I can't go to page 2 of my blog

This is the first time i'm working with WordPress i'm totally new and i apologize if dont understand some things at first time. The problem: this is my blog: http://www.nucleusmarket.com i have 2 ...
0
votes
1answer
55 views

List of filtered Events is breaking paging?

I have a list of events that are displaying in date order, with events in the past being hidden. The issue is that in total, there are 3 pages of events, but once the past events are hidden, there ...
0
votes
1answer
41 views

WP Paginate not working properly

Im creating a WP for a custom type post in a page template: <? global $paged; global $notquery; $temp = $notquery; $notquery = ...
0
votes
0answers
30 views

Display all page numbers at the same time

WordPress only shows a few page numbers at a time and I have to keep clicking on the "right" arrow to advance one page at a time. I have 31 product pages, each with many products so it takes "forever" ...
0
votes
0answers
15 views

Exclude category in next_post_link function

My post is in multiple category sponsored and other. With the next button I want the video to be appeared only from sponsored category not from other category. I have tried excluding the other ...
0
votes
0answers
19 views

In pagination, list “page of pages” instead of listing all pages

I've used the hack that allows having both <> and the page numbers using wp_link_pages();. My question is: does anyone know how I can replace the list of pages (1 2 3 4 5 6 etc.) with page of ...
0
votes
0answers
15 views

WordPress site with custom theme, can't get pagination to update posts on page 2+ [duplicate]

I have inherited a WordPress site which has a custom theme which I have in the main been able to modify to suit the clients needs. I am having trouble, however, with the pagination of the ...
2
votes
1answer
30 views

How to let crawlers search paginated comments?

With comment pagination, Google doesn't index the older pages and comments become essentially lost to searches. Is there a way to let search engines crawl paginated comments, perhaps by generating a ...
0
votes
1answer
26 views

Pagination when using multiple loops

I've populated my index.php with various post loops and I want to be able to get pagination working. The reason for multiple loops is because I'm pulling in posts from different categories in ...
0
votes
0answers
38 views

Custom Taxonomy Terms Pagination Not working

I am trying to create a pagination for terms and not for the pages. Earlier I was successful in it but when I added new terms then the links started giving me 404 error. Here is the code to of the ...
0
votes
1answer
69 views

Pagination - works on local but not live dev!

Can anyone please shed some light as to why the following to print out page numbers works on my local dev server but not on my live server? Both server are running same version of PHP. My Loop ...

1 2 3 4 5 12