Tagged Questions
0
votes
0answers
40 views
Marginal pagination on home.php
I'm trying too make a custom wp-theme and use a few loops in home.php. But now I can't finish home.php because of pagination. How cant I realize any type of pagination with saving that kind of ...
0
votes
1answer
123 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
1answer
139 views
pagination does not work with query_posts. Help! [duplicate]
I made a separate page template (added sidebar), this page contains all the posts. Pagination works!
But, if this page set as the home page, pagination is not working!
Please help find solutions ...
0
votes
0answers
15 views
Have custom number of blog posts on homepage with working pagination [duplicate]
Possible Duplicate:
How to show a single post on the front page but have normal paging?
My question is similar to How to show a single post on the front page but have normal paging?. The ...
0
votes
2answers
69 views
page 1 is not paged
I have rules that only work on paginated pages (is_paged). However, they don't work on page number one (/page/1). This one is behaving exactly like the homepage (!is_paged), but unlike pages 2,3,4 ...
1
vote
2answers
299 views
Home page not obeying post per page setting on the first page only
I am working on a custom template for my office. I have a static front page and a static home page to display the blog posts. I am having a few minor issues and will have to create a few other ...
0
votes
1answer
123 views
Home page loop with pagination problem
I used a loop to display posts from specific categories, then add the code for WP_Paginate plugin under that loop ... below my posts I see pagination links from 1 --> 5 , however when I press page 2 ...
1
vote
1answer
93 views
Template hierarchy about pagination after front-page.php
Quick, simple. I have front-page.php working in Wordpress, and these loops over the main loop for my latest posts. The problem is the pagination template.
When I get to site.com/page/2, it shows the ...
0
votes
4answers
1k views
Show content only on front page?
I want to add some content (slider) only on the home page. I don't want it to apear on the other pages. I am trying following:
<?php if(is_home()) { ?>
<div>
...
<div>
} ?>
But ...
0
votes
1answer
1k views
Skip 5 latest post while paging?
In the index.php page, I need to skip 5 posts (the last 5 posts in the blog).
I use the WP-Paginate plugin, but all pages show the same. I'm using offset=5, this is my code:
<?php $paged = ...
5
votes
3answers
2k views
How to show a single post on the front page but have normal paging?
I would like to have a single post on my front page (always the latest), but let normal paging work. So the front page has post 1, the next page should have post 2-11 (1-10 is fine too), then 12-21 or ...
