/ Published in: PHP
URL: http://www.wprecipes.com/wordpress-tip-better-page-navigation
Expand |
Embed | Plain Text
<?php if ($paged > 1) { ?> <?php if (get_next_posts_link() != NULL) { next_posts_link('« Older Entries'); } else { ?> <a href="http://.../archives">« Site Archives</a> <?php } ?> <?php previous_posts_link('Newer Entries »'); ?> <?php } else { ?> <?php next_posts_link('« Older Entries'); ?> <?php previous_posts_link('Newer Entries »'); ?> <?php } ?>
You need to login to post a comment.
