I have a Wordpress theme displaying a Next / Previous message, but with some problems when you view the first message.
Obviously, in the first post there are no other posts from the previous one, however I would like to display the following post 2 posts
My current code is as follows:
<?php next_post('%','', TRUE, '1'); ?>
<?php previous_post('%','', TRUE, '1'); ?>
source
share