I think the way wordpress display previous and next posts is basically non sense, with next posts on the left side, and older posts on the right side.
I am using the code
<?php posts_nav_link() ?>
is there a way to reverse such order?
|
I think the way wordpress display previous and next posts is basically non sense, with next posts on the left side, and older posts on the right side. I am using the code
is there a way to reverse such order? |
|||
|
|
|
This is because it is, by default, done as 'previous page' on the left, and 'next page' on the right. Posts appear in reverse chronological order, with the latest post first, so 'next page' means going back in time. So in terms of pages it makes sense, in terms of chronology it doesn't. Anyway... this should work:
|
|||
|
|
|
Take a look at this http://codex.wordpress.org/Function_Reference/posts_nav_link Note: since weblog posts are traditionally listed in reverse chronological order (with most recent posts at the top), there is some ambiguity in the definition of "next page". WordPress defines "next page" as the "next page toward the past". In WordPress 1.5, the default Kubrick theme addresses this ambiguity by labeling the "next page" link as "previous entries". See Example: Kubrick Theme Format. You can use next_posts_link() and previous_posts_link() separately and place where ever you want in your template..... |
|||
|
|
|
The function...
...calls...
...where the defaults for the previous function come from. If then the
...is set, the functions...
get called. If then...
...meets, the function will add a separator between both links. |
|||
|
|