I want to only show one post per page.
I want the post to be displayed on the home page to be a sticky post.
But when I make the post sticky it shows two posts on the home page and then one post on the following pages.
Is there a way around this?
I've tried a couple of themes so it doesn't seem to be a theme issue.
Thanks.
You would need to create a custom query in your theme's index.php template file that was only active on the first page via the is_paged() conditional.
http://codex.wordpress.org/Function_Reference/query_posts
http://codex.wordpress.org/Conditional_Tags#A_Paged_Page
Even if I only want post display on all pages, not just the first page?
Thanks
In that case, you won't need the is_paged() conditional.